Models
Types

Models

Industry

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
name String
  • @unique
Yes -
promotions Promotion[]
  • -
Yes -
categories Category[]
  • -
Yes -
features Feature[]
  • -
Yes -

Operations

findUnique

Find zero or one Industry

// Get one Industry
const industry = await prisma.industry.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where IndustryWhereUniqueInput Yes

Output

Type: Industry
Required: No
List: No

findFirst

Find first Industry

// Get one Industry
const industry = await prisma.industry.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where IndustryWhereInput No
orderBy IndustryOrderByWithRelationInput[] | IndustryOrderByWithRelationInput No
cursor IndustryWhereUniqueInput No
take Int No
skip Int No
distinct IndustryScalarFieldEnum | IndustryScalarFieldEnum[] No

Output

Type: Industry
Required: No
List: No

findMany

Find zero or more Industry

// Get all Industry
const Industry = await prisma.industry.findMany()
// Get first 10 Industry
const Industry = await prisma.industry.findMany({ take: 10 })

Input

Name Type Required
where IndustryWhereInput No
orderBy IndustryOrderByWithRelationInput[] | IndustryOrderByWithRelationInput No
cursor IndustryWhereUniqueInput No
take Int No
skip Int No
distinct IndustryScalarFieldEnum | IndustryScalarFieldEnum[] No

Output

Type: Industry
Required: Yes
List: Yes

create

Create one Industry

// Create one Industry
const Industry = await prisma.industry.create({
  data: {
    // ... data to create a Industry
  }
})

Input

Name Type Required
data IndustryCreateInput | IndustryUncheckedCreateInput Yes

Output

Type: Industry
Required: Yes
List: No

delete

Delete one Industry

// Delete one Industry
const Industry = await prisma.industry.delete({
  where: {
    // ... filter to delete one Industry
  }
})

Input

Name Type Required
where IndustryWhereUniqueInput Yes

Output

Type: Industry
Required: No
List: No

update

Update one Industry

// Update one Industry
const industry = await prisma.industry.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data IndustryUpdateInput | IndustryUncheckedUpdateInput Yes
where IndustryWhereUniqueInput Yes

Output

Type: Industry
Required: No
List: No

deleteMany

Delete zero or more Industry

// Delete a few Industry
const { count } = await prisma.industry.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where IndustryWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Industry

const { count } = await prisma.industry.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data IndustryUpdateManyMutationInput | IndustryUncheckedUpdateManyInput Yes
where IndustryWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Industry

// Update or create a Industry
const industry = await prisma.industry.upsert({
  create: {
    // ... data to create a Industry
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Industry we want to update
  }
})

Input

Name Type Required
where IndustryWhereUniqueInput Yes
create IndustryCreateInput | IndustryUncheckedCreateInput Yes
update IndustryUpdateInput | IndustryUncheckedUpdateInput Yes

Output

Type: Industry
Required: Yes
List: No

Country

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
name String
  • @unique
Yes -
user User[]
  • -
Yes -
promotions Promotion[]
  • -
Yes -
brandTemplate BrandTemplate[]
  • -
Yes -
features Feature[]
  • -
Yes -

Operations

findUnique

Find zero or one Country

// Get one Country
const country = await prisma.country.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CountryWhereUniqueInput Yes

Output

Type: Country
Required: No
List: No

findFirst

Find first Country

// Get one Country
const country = await prisma.country.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CountryWhereInput No
orderBy CountryOrderByWithRelationInput[] | CountryOrderByWithRelationInput No
cursor CountryWhereUniqueInput No
take Int No
skip Int No
distinct CountryScalarFieldEnum | CountryScalarFieldEnum[] No

Output

Type: Country
Required: No
List: No

findMany

Find zero or more Country

// Get all Country
const Country = await prisma.country.findMany()
// Get first 10 Country
const Country = await prisma.country.findMany({ take: 10 })

Input

Name Type Required
where CountryWhereInput No
orderBy CountryOrderByWithRelationInput[] | CountryOrderByWithRelationInput No
cursor CountryWhereUniqueInput No
take Int No
skip Int No
distinct CountryScalarFieldEnum | CountryScalarFieldEnum[] No

Output

Type: Country
Required: Yes
List: Yes

create

Create one Country

// Create one Country
const Country = await prisma.country.create({
  data: {
    // ... data to create a Country
  }
})

Input

Name Type Required
data CountryCreateInput | CountryUncheckedCreateInput Yes

Output

Type: Country
Required: Yes
List: No

delete

Delete one Country

// Delete one Country
const Country = await prisma.country.delete({
  where: {
    // ... filter to delete one Country
  }
})

Input

Name Type Required
where CountryWhereUniqueInput Yes

Output

Type: Country
Required: No
List: No

update

Update one Country

// Update one Country
const country = await prisma.country.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CountryUpdateInput | CountryUncheckedUpdateInput Yes
where CountryWhereUniqueInput Yes

Output

Type: Country
Required: No
List: No

deleteMany

Delete zero or more Country

// Delete a few Country
const { count } = await prisma.country.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CountryWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Country

const { count } = await prisma.country.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CountryUpdateManyMutationInput | CountryUncheckedUpdateManyInput Yes
where CountryWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Country

// Update or create a Country
const country = await prisma.country.upsert({
  create: {
    // ... data to create a Country
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Country we want to update
  }
})

Input

Name Type Required
where CountryWhereUniqueInput Yes
create CountryCreateInput | CountryUncheckedCreateInput Yes
update CountryUpdateInput | CountryUncheckedUpdateInput Yes

Output

Type: Country
Required: Yes
List: No

Role

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
name String
  • @unique
Yes -
description String?
  • -
No -
permissions Permissions[]
  • -
Yes -
user User[]
  • -
Yes -

Operations

findUnique

Find zero or one Role

// Get one Role
const role = await prisma.role.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RoleWhereUniqueInput Yes

Output

Type: Role
Required: No
List: No

findFirst

Find first Role

// Get one Role
const role = await prisma.role.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RoleWhereInput No
orderBy RoleOrderByWithRelationInput[] | RoleOrderByWithRelationInput No
cursor RoleWhereUniqueInput No
take Int No
skip Int No
distinct RoleScalarFieldEnum | RoleScalarFieldEnum[] No

Output

Type: Role
Required: No
List: No

findMany

Find zero or more Role

// Get all Role
const Role = await prisma.role.findMany()
// Get first 10 Role
const Role = await prisma.role.findMany({ take: 10 })

Input

Name Type Required
where RoleWhereInput No
orderBy RoleOrderByWithRelationInput[] | RoleOrderByWithRelationInput No
cursor RoleWhereUniqueInput No
take Int No
skip Int No
distinct RoleScalarFieldEnum | RoleScalarFieldEnum[] No

Output

Type: Role
Required: Yes
List: Yes

create

Create one Role

// Create one Role
const Role = await prisma.role.create({
  data: {
    // ... data to create a Role
  }
})

Input

Name Type Required
data RoleCreateInput | RoleUncheckedCreateInput Yes

Output

Type: Role
Required: Yes
List: No

delete

Delete one Role

// Delete one Role
const Role = await prisma.role.delete({
  where: {
    // ... filter to delete one Role
  }
})

Input

Name Type Required
where RoleWhereUniqueInput Yes

Output

Type: Role
Required: No
List: No

update

Update one Role

// Update one Role
const role = await prisma.role.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RoleUpdateInput | RoleUncheckedUpdateInput Yes
where RoleWhereUniqueInput Yes

Output

Type: Role
Required: No
List: No

deleteMany

Delete zero or more Role

// Delete a few Role
const { count } = await prisma.role.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where RoleWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Role

const { count } = await prisma.role.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data RoleUpdateManyMutationInput | RoleUncheckedUpdateManyInput Yes
where RoleWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Role

// Update or create a Role
const role = await prisma.role.upsert({
  create: {
    // ... data to create a Role
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Role we want to update
  }
})

Input

Name Type Required
where RoleWhereUniqueInput Yes
create RoleCreateInput | RoleUncheckedCreateInput Yes
update RoleUpdateInput | RoleUncheckedUpdateInput Yes

Output

Type: Role
Required: Yes
List: No

Domain

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
name String
  • @unique
Yes -
description String?
  • -
No -
permissions Permissions[]
  • -
Yes -

Operations

findUnique

Find zero or one Domain

// Get one Domain
const domain = await prisma.domain.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DomainWhereUniqueInput Yes

Output

Type: Domain
Required: No
List: No

findFirst

Find first Domain

// Get one Domain
const domain = await prisma.domain.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DomainWhereInput No
orderBy DomainOrderByWithRelationInput[] | DomainOrderByWithRelationInput No
cursor DomainWhereUniqueInput No
take Int No
skip Int No
distinct DomainScalarFieldEnum | DomainScalarFieldEnum[] No

Output

Type: Domain
Required: No
List: No

findMany

Find zero or more Domain

// Get all Domain
const Domain = await prisma.domain.findMany()
// Get first 10 Domain
const Domain = await prisma.domain.findMany({ take: 10 })

Input

Name Type Required
where DomainWhereInput No
orderBy DomainOrderByWithRelationInput[] | DomainOrderByWithRelationInput No
cursor DomainWhereUniqueInput No
take Int No
skip Int No
distinct DomainScalarFieldEnum | DomainScalarFieldEnum[] No

Output

Type: Domain
Required: Yes
List: Yes

create

Create one Domain

// Create one Domain
const Domain = await prisma.domain.create({
  data: {
    // ... data to create a Domain
  }
})

Input

Name Type Required
data DomainCreateInput | DomainUncheckedCreateInput Yes

Output

Type: Domain
Required: Yes
List: No

delete

Delete one Domain

// Delete one Domain
const Domain = await prisma.domain.delete({
  where: {
    // ... filter to delete one Domain
  }
})

Input

Name Type Required
where DomainWhereUniqueInput Yes

Output

Type: Domain
Required: No
List: No

update

Update one Domain

// Update one Domain
const domain = await prisma.domain.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DomainUpdateInput | DomainUncheckedUpdateInput Yes
where DomainWhereUniqueInput Yes

Output

Type: Domain
Required: No
List: No

deleteMany

Delete zero or more Domain

// Delete a few Domain
const { count } = await prisma.domain.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where DomainWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Domain

const { count } = await prisma.domain.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data DomainUpdateManyMutationInput | DomainUncheckedUpdateManyInput Yes
where DomainWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Domain

// Update or create a Domain
const domain = await prisma.domain.upsert({
  create: {
    // ... data to create a Domain
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Domain we want to update
  }
})

Input

Name Type Required
where DomainWhereUniqueInput Yes
create DomainCreateInput | DomainUncheckedCreateInput Yes
update DomainUpdateInput | DomainUncheckedUpdateInput Yes

Output

Type: Domain
Required: Yes
List: No

Permissions

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
accessLevel PermissionTypes
  • @default(Viewer)
Yes -
domain Domain
  • -
Yes -
role Role
  • -
Yes -
domainId String
  • -
Yes -
roleId String
  • -
Yes -

Operations

findUnique

Find zero or one Permissions

// Get one Permissions
const permissions = await prisma.permissions.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PermissionsWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Permissions

// Get one Permissions
const permissions = await prisma.permissions.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PermissionsWhereInput No
orderBy PermissionsOrderByWithRelationInput[] | PermissionsOrderByWithRelationInput No
cursor PermissionsWhereUniqueInput No
take Int No
skip Int No
distinct PermissionsScalarFieldEnum | PermissionsScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Permissions

// Get all Permissions
const Permissions = await prisma.permissions.findMany()
// Get first 10 Permissions
const Permissions = await prisma.permissions.findMany({ take: 10 })

Input

Name Type Required
where PermissionsWhereInput No
orderBy PermissionsOrderByWithRelationInput[] | PermissionsOrderByWithRelationInput No
cursor PermissionsWhereUniqueInput No
take Int No
skip Int No
distinct PermissionsScalarFieldEnum | PermissionsScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Permissions

// Create one Permissions
const Permissions = await prisma.permissions.create({
  data: {
    // ... data to create a Permissions
  }
})

Input

Name Type Required
data PermissionsCreateInput | PermissionsUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Permissions

// Delete one Permissions
const Permissions = await prisma.permissions.delete({
  where: {
    // ... filter to delete one Permissions
  }
})

Input

Name Type Required
where PermissionsWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Permissions

// Update one Permissions
const permissions = await prisma.permissions.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PermissionsUpdateInput | PermissionsUncheckedUpdateInput Yes
where PermissionsWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Permissions

// Delete a few Permissions
const { count } = await prisma.permissions.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PermissionsWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Permissions

const { count } = await prisma.permissions.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PermissionsUpdateManyMutationInput | PermissionsUncheckedUpdateManyInput Yes
where PermissionsWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Permissions

// Update or create a Permissions
const permissions = await prisma.permissions.upsert({
  create: {
    // ... data to create a Permissions
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Permissions we want to update
  }
})

Input

Name Type Required
where PermissionsWhereUniqueInput Yes
create PermissionsCreateInput | PermissionsUncheckedCreateInput Yes
update PermissionsUpdateInput | PermissionsUncheckedUpdateInput Yes

Output

Required: Yes
List: No

User

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
name String
  • -
Yes -
email String
  • @unique
Yes -
password String?
  • -
No -
token String?
  • -
No -
fcm_token String?
  • -
No -
avatar String?
  • -
No -
role Role?
  • -
No -
roleId String?
  • -
No -
suspendendAt DateTime?
  • -
No -
status UserStatus?
  • -
No -
streetAddress String?
  • -
No -
city String?
  • -
No -
cell String?
  • -
No -
tell String?
  • -
No -
verificationCode Int?
  • -
No -
country Country?
  • -
No -
countryId String?
  • -
No -
teams Team[]
  • -
Yes -
assignedTasks Task[]
  • -
Yes -
createdTasks Task[]
  • -
Yes -
promotion Promotion[]
  • -
Yes -
payment Payment[]
  • -
Yes -
createdTemplates BrandTemplate[]
  • -
Yes -
reviewedTemplates BrandTemplate[]
  • -
Yes -
clientEdits ClientEdit[]
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one User

// Get one User
const user = await prisma.user.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

findFirst

Find first User

// Get one User
const user = await prisma.user.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum | UserScalarFieldEnum[] No

Output

Type: User
Required: No
List: No

findMany

Find zero or more User

// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum | UserScalarFieldEnum[] No

Output

Type: User
Required: Yes
List: Yes

create

Create one User

// Create one User
const User = await prisma.user.create({
  data: {
    // ... data to create a User
  }
})

Input

Name Type Required
data UserCreateInput | UserUncheckedCreateInput Yes

Output

Type: User
Required: Yes
List: No

delete

Delete one User

// Delete one User
const User = await prisma.user.delete({
  where: {
    // ... filter to delete one User
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

update

Update one User

// Update one User
const user = await prisma.user.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateInput | UserUncheckedUpdateInput Yes
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

deleteMany

Delete zero or more User

// Delete a few User
const { count } = await prisma.user.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one User

const { count } = await prisma.user.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateManyMutationInput | UserUncheckedUpdateManyInput Yes
where UserWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one User

// Update or create a User
const user = await prisma.user.upsert({
  create: {
    // ... data to create a User
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the User we want to update
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes
create UserCreateInput | UserUncheckedCreateInput Yes
update UserUpdateInput | UserUncheckedUpdateInput Yes

Output

Type: User
Required: Yes
List: No

Team

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
name String
  • -
Yes -
createdAt DateTime
  • @default(now())
Yes -
leader String
  • -
Yes -
user User?
  • -
No -
userId String?
  • -
No -
goals Goal[]
  • -
Yes -

Operations

findUnique

Find zero or one Team

// Get one Team
const team = await prisma.team.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TeamWhereUniqueInput Yes

Output

Type: Team
Required: No
List: No

findFirst

Find first Team

// Get one Team
const team = await prisma.team.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TeamWhereInput No
orderBy TeamOrderByWithRelationInput[] | TeamOrderByWithRelationInput No
cursor TeamWhereUniqueInput No
take Int No
skip Int No
distinct TeamScalarFieldEnum | TeamScalarFieldEnum[] No

Output

Type: Team
Required: No
List: No

findMany

Find zero or more Team

// Get all Team
const Team = await prisma.team.findMany()
// Get first 10 Team
const Team = await prisma.team.findMany({ take: 10 })

Input

Name Type Required
where TeamWhereInput No
orderBy TeamOrderByWithRelationInput[] | TeamOrderByWithRelationInput No
cursor TeamWhereUniqueInput No
take Int No
skip Int No
distinct TeamScalarFieldEnum | TeamScalarFieldEnum[] No

Output

Type: Team
Required: Yes
List: Yes

create

Create one Team

// Create one Team
const Team = await prisma.team.create({
  data: {
    // ... data to create a Team
  }
})

Input

Name Type Required
data TeamCreateInput | TeamUncheckedCreateInput Yes

Output

Type: Team
Required: Yes
List: No

delete

Delete one Team

// Delete one Team
const Team = await prisma.team.delete({
  where: {
    // ... filter to delete one Team
  }
})

Input

Name Type Required
where TeamWhereUniqueInput Yes

Output

Type: Team
Required: No
List: No

update

Update one Team

// Update one Team
const team = await prisma.team.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TeamUpdateInput | TeamUncheckedUpdateInput Yes
where TeamWhereUniqueInput Yes

Output

Type: Team
Required: No
List: No

deleteMany

Delete zero or more Team

// Delete a few Team
const { count } = await prisma.team.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TeamWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Team

const { count } = await prisma.team.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TeamUpdateManyMutationInput | TeamUncheckedUpdateManyInput Yes
where TeamWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Team

// Update or create a Team
const team = await prisma.team.upsert({
  create: {
    // ... data to create a Team
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Team we want to update
  }
})

Input

Name Type Required
where TeamWhereUniqueInput Yes
create TeamCreateInput | TeamUncheckedCreateInput Yes
update TeamUpdateInput | TeamUncheckedUpdateInput Yes

Output

Type: Team
Required: Yes
List: No

Goal

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
teams Team[]
  • -
Yes -
title String
  • @unique
Yes -
description String?
  • -
No -
startDate DateTime?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -
deadline DateTime?
  • -
No -
active Boolean?
  • -
No -
isComplete Boolean?
  • -
No -
tasks Task[]
  • -
Yes -

Operations

findUnique

Find zero or one Goal

// Get one Goal
const goal = await prisma.goal.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where GoalWhereUniqueInput Yes

Output

Type: Goal
Required: No
List: No

findFirst

Find first Goal

// Get one Goal
const goal = await prisma.goal.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where GoalWhereInput No
orderBy GoalOrderByWithRelationInput[] | GoalOrderByWithRelationInput No
cursor GoalWhereUniqueInput No
take Int No
skip Int No
distinct GoalScalarFieldEnum | GoalScalarFieldEnum[] No

Output

Type: Goal
Required: No
List: No

findMany

Find zero or more Goal

// Get all Goal
const Goal = await prisma.goal.findMany()
// Get first 10 Goal
const Goal = await prisma.goal.findMany({ take: 10 })

Input

Name Type Required
where GoalWhereInput No
orderBy GoalOrderByWithRelationInput[] | GoalOrderByWithRelationInput No
cursor GoalWhereUniqueInput No
take Int No
skip Int No
distinct GoalScalarFieldEnum | GoalScalarFieldEnum[] No

Output

Type: Goal
Required: Yes
List: Yes

create

Create one Goal

// Create one Goal
const Goal = await prisma.goal.create({
  data: {
    // ... data to create a Goal
  }
})

Input

Name Type Required
data GoalCreateInput | GoalUncheckedCreateInput Yes

Output

Type: Goal
Required: Yes
List: No

delete

Delete one Goal

// Delete one Goal
const Goal = await prisma.goal.delete({
  where: {
    // ... filter to delete one Goal
  }
})

Input

Name Type Required
where GoalWhereUniqueInput Yes

Output

Type: Goal
Required: No
List: No

update

Update one Goal

// Update one Goal
const goal = await prisma.goal.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data GoalUpdateInput | GoalUncheckedUpdateInput Yes
where GoalWhereUniqueInput Yes

Output

Type: Goal
Required: No
List: No

deleteMany

Delete zero or more Goal

// Delete a few Goal
const { count } = await prisma.goal.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where GoalWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Goal

const { count } = await prisma.goal.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data GoalUpdateManyMutationInput | GoalUncheckedUpdateManyInput Yes
where GoalWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Goal

// Update or create a Goal
const goal = await prisma.goal.upsert({
  create: {
    // ... data to create a Goal
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Goal we want to update
  }
})

Input

Name Type Required
where GoalWhereUniqueInput Yes
create GoalCreateInput | GoalUncheckedCreateInput Yes
update GoalUpdateInput | GoalUncheckedUpdateInput Yes

Output

Type: Goal
Required: Yes
List: No

Task

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
title String
  • @unique
Yes -
comments String?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -
startDate DateTime?
  • -
No -
dueDate DateTime?
  • -
No -
priority TaskPriority?
  • -
No -
stage TaskStage?
  • -
No -
Goal Goal?
  • -
No -
GoalId String?
  • -
No -
assignee User?
  • -
No -
assigneeId String?
  • -
No -
createdBy User?
  • -
No -
createdById String?
  • -
No -

Operations

findUnique

Find zero or one Task

// Get one Task
const task = await prisma.task.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TaskWhereUniqueInput Yes

Output

Type: Task
Required: No
List: No

findFirst

Find first Task

// Get one Task
const task = await prisma.task.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TaskWhereInput No
orderBy TaskOrderByWithRelationInput[] | TaskOrderByWithRelationInput No
cursor TaskWhereUniqueInput No
take Int No
skip Int No
distinct TaskScalarFieldEnum | TaskScalarFieldEnum[] No

Output

Type: Task
Required: No
List: No

findMany

Find zero or more Task

// Get all Task
const Task = await prisma.task.findMany()
// Get first 10 Task
const Task = await prisma.task.findMany({ take: 10 })

Input

Name Type Required
where TaskWhereInput No
orderBy TaskOrderByWithRelationInput[] | TaskOrderByWithRelationInput No
cursor TaskWhereUniqueInput No
take Int No
skip Int No
distinct TaskScalarFieldEnum | TaskScalarFieldEnum[] No

Output

Type: Task
Required: Yes
List: Yes

create

Create one Task

// Create one Task
const Task = await prisma.task.create({
  data: {
    // ... data to create a Task
  }
})

Input

Name Type Required
data TaskCreateInput | TaskUncheckedCreateInput Yes

Output

Type: Task
Required: Yes
List: No

delete

Delete one Task

// Delete one Task
const Task = await prisma.task.delete({
  where: {
    // ... filter to delete one Task
  }
})

Input

Name Type Required
where TaskWhereUniqueInput Yes

Output

Type: Task
Required: No
List: No

update

Update one Task

// Update one Task
const task = await prisma.task.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TaskUpdateInput | TaskUncheckedUpdateInput Yes
where TaskWhereUniqueInput Yes

Output

Type: Task
Required: No
List: No

deleteMany

Delete zero or more Task

// Delete a few Task
const { count } = await prisma.task.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TaskWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Task

const { count } = await prisma.task.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TaskUpdateManyMutationInput | TaskUncheckedUpdateManyInput Yes
where TaskWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Task

// Update or create a Task
const task = await prisma.task.upsert({
  create: {
    // ... data to create a Task
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Task we want to update
  }
})

Input

Name Type Required
where TaskWhereUniqueInput Yes
create TaskCreateInput | TaskUncheckedCreateInput Yes
update TaskUpdateInput | TaskUncheckedUpdateInput Yes

Output

Type: Task
Required: Yes
List: No

Feature

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
name String
  • @unique
Yes -
description String?
  • -
No -
type FeatureType
  • @default(Free)
Yes -
industries Industry[]
  • -
Yes -
countries Country[]
  • -
Yes -
promotions Promotion[]
  • -
Yes -
packages Package[]
  • -
Yes -

Operations

findUnique

Find zero or one Feature

// Get one Feature
const feature = await prisma.feature.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FeatureWhereUniqueInput Yes

Output

Type: Feature
Required: No
List: No

findFirst

Find first Feature

// Get one Feature
const feature = await prisma.feature.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FeatureWhereInput No
orderBy FeatureOrderByWithRelationInput[] | FeatureOrderByWithRelationInput No
cursor FeatureWhereUniqueInput No
take Int No
skip Int No
distinct FeatureScalarFieldEnum | FeatureScalarFieldEnum[] No

Output

Type: Feature
Required: No
List: No

findMany

Find zero or more Feature

// Get all Feature
const Feature = await prisma.feature.findMany()
// Get first 10 Feature
const Feature = await prisma.feature.findMany({ take: 10 })

Input

Name Type Required
where FeatureWhereInput No
orderBy FeatureOrderByWithRelationInput[] | FeatureOrderByWithRelationInput No
cursor FeatureWhereUniqueInput No
take Int No
skip Int No
distinct FeatureScalarFieldEnum | FeatureScalarFieldEnum[] No

Output

Type: Feature
Required: Yes
List: Yes

create

Create one Feature

// Create one Feature
const Feature = await prisma.feature.create({
  data: {
    // ... data to create a Feature
  }
})

Input

Name Type Required
data FeatureCreateInput | FeatureUncheckedCreateInput Yes

Output

Type: Feature
Required: Yes
List: No

delete

Delete one Feature

// Delete one Feature
const Feature = await prisma.feature.delete({
  where: {
    // ... filter to delete one Feature
  }
})

Input

Name Type Required
where FeatureWhereUniqueInput Yes

Output

Type: Feature
Required: No
List: No

update

Update one Feature

// Update one Feature
const feature = await prisma.feature.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FeatureUpdateInput | FeatureUncheckedUpdateInput Yes
where FeatureWhereUniqueInput Yes

Output

Type: Feature
Required: No
List: No

deleteMany

Delete zero or more Feature

// Delete a few Feature
const { count } = await prisma.feature.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FeatureWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Feature

const { count } = await prisma.feature.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FeatureUpdateManyMutationInput | FeatureUncheckedUpdateManyInput Yes
where FeatureWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Feature

// Update or create a Feature
const feature = await prisma.feature.upsert({
  create: {
    // ... data to create a Feature
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Feature we want to update
  }
})

Input

Name Type Required
where FeatureWhereUniqueInput Yes
create FeatureCreateInput | FeatureUncheckedCreateInput Yes
update FeatureUpdateInput | FeatureUncheckedUpdateInput Yes

Output

Type: Feature
Required: Yes
List: No

Package

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
name String
  • @unique
Yes -
description String?
  • -
No -
prices PackagePrice[]
  • -
Yes -
features Feature[]
  • -
Yes -
color String?
  • -
No -
level Int
  • @unique
Yes -
promotions Promotion[]
  • -
Yes -
payment Payment[]
  • -
Yes -

Operations

findUnique

Find zero or one Package

// Get one Package
const package = await prisma.package.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PackageWhereUniqueInput Yes

Output

Type: Package
Required: No
List: No

findFirst

Find first Package

// Get one Package
const package = await prisma.package.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PackageWhereInput No
orderBy PackageOrderByWithRelationInput[] | PackageOrderByWithRelationInput No
cursor PackageWhereUniqueInput No
take Int No
skip Int No
distinct PackageScalarFieldEnum | PackageScalarFieldEnum[] No

Output

Type: Package
Required: No
List: No

findMany

Find zero or more Package

// Get all Package
const Package = await prisma.package.findMany()
// Get first 10 Package
const Package = await prisma.package.findMany({ take: 10 })

Input

Name Type Required
where PackageWhereInput No
orderBy PackageOrderByWithRelationInput[] | PackageOrderByWithRelationInput No
cursor PackageWhereUniqueInput No
take Int No
skip Int No
distinct PackageScalarFieldEnum | PackageScalarFieldEnum[] No

Output

Type: Package
Required: Yes
List: Yes

create

Create one Package

// Create one Package
const Package = await prisma.package.create({
  data: {
    // ... data to create a Package
  }
})

Input

Name Type Required
data PackageCreateInput | PackageUncheckedCreateInput Yes

Output

Type: Package
Required: Yes
List: No

delete

Delete one Package

// Delete one Package
const Package = await prisma.package.delete({
  where: {
    // ... filter to delete one Package
  }
})

Input

Name Type Required
where PackageWhereUniqueInput Yes

Output

Type: Package
Required: No
List: No

update

Update one Package

// Update one Package
const package = await prisma.package.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PackageUpdateInput | PackageUncheckedUpdateInput Yes
where PackageWhereUniqueInput Yes

Output

Type: Package
Required: No
List: No

deleteMany

Delete zero or more Package

// Delete a few Package
const { count } = await prisma.package.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PackageWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Package

const { count } = await prisma.package.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PackageUpdateManyMutationInput | PackageUncheckedUpdateManyInput Yes
where PackageWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Package

// Update or create a Package
const package = await prisma.package.upsert({
  create: {
    // ... data to create a Package
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Package we want to update
  }
})

Input

Name Type Required
where PackageWhereUniqueInput Yes
create PackageCreateInput | PackageUncheckedCreateInput Yes
update PackageUpdateInput | PackageUncheckedUpdateInput Yes

Output

Type: Package
Required: Yes
List: No

PackagePrice

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
duration Float
  • -
Yes -
amount Float
  • -
Yes -
extentionTime Float?
  • -
No -
Package Package?
  • -
No -
packageId String?
  • -
No -

Operations

findUnique

Find zero or one PackagePrice

// Get one PackagePrice
const packagePrice = await prisma.packagePrice.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PackagePriceWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first PackagePrice

// Get one PackagePrice
const packagePrice = await prisma.packagePrice.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PackagePriceWhereInput No
orderBy PackagePriceOrderByWithRelationInput[] | PackagePriceOrderByWithRelationInput No
cursor PackagePriceWhereUniqueInput No
take Int No
skip Int No
distinct PackagePriceScalarFieldEnum | PackagePriceScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more PackagePrice

// Get all PackagePrice
const PackagePrice = await prisma.packagePrice.findMany()
// Get first 10 PackagePrice
const PackagePrice = await prisma.packagePrice.findMany({ take: 10 })

Input

Name Type Required
where PackagePriceWhereInput No
orderBy PackagePriceOrderByWithRelationInput[] | PackagePriceOrderByWithRelationInput No
cursor PackagePriceWhereUniqueInput No
take Int No
skip Int No
distinct PackagePriceScalarFieldEnum | PackagePriceScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one PackagePrice

// Create one PackagePrice
const PackagePrice = await prisma.packagePrice.create({
  data: {
    // ... data to create a PackagePrice
  }
})

Input

Name Type Required
data PackagePriceCreateInput | PackagePriceUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one PackagePrice

// Delete one PackagePrice
const PackagePrice = await prisma.packagePrice.delete({
  where: {
    // ... filter to delete one PackagePrice
  }
})

Input

Name Type Required
where PackagePriceWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one PackagePrice

// Update one PackagePrice
const packagePrice = await prisma.packagePrice.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PackagePriceUpdateInput | PackagePriceUncheckedUpdateInput Yes
where PackagePriceWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more PackagePrice

// Delete a few PackagePrice
const { count } = await prisma.packagePrice.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PackagePriceWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one PackagePrice

const { count } = await prisma.packagePrice.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PackagePriceUpdateManyMutationInput | PackagePriceUncheckedUpdateManyInput Yes
where PackagePriceWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one PackagePrice

// Update or create a PackagePrice
const packagePrice = await prisma.packagePrice.upsert({
  create: {
    // ... data to create a PackagePrice
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the PackagePrice we want to update
  }
})

Input

Name Type Required
where PackagePriceWhereUniqueInput Yes
create PackagePriceCreateInput | PackagePriceUncheckedCreateInput Yes
update PackagePriceUpdateInput | PackagePriceUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Promotion

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
name String
  • -
Yes -
description String?
  • -
No -
startDate DateTime
  • -
Yes -
endDate DateTime
  • -
Yes -
features Feature[]
  • -
Yes -
industries Industry[]
  • -
Yes -
countries Country[]
  • -
Yes -
packages Package[]
  • -
Yes -
createdBy User?
  • -
No -
createdById String?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Promotion

// Get one Promotion
const promotion = await prisma.promotion.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PromotionWhereUniqueInput Yes

Output

Type: Promotion
Required: No
List: No

findFirst

Find first Promotion

// Get one Promotion
const promotion = await prisma.promotion.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PromotionWhereInput No
orderBy PromotionOrderByWithRelationInput[] | PromotionOrderByWithRelationInput No
cursor PromotionWhereUniqueInput No
take Int No
skip Int No
distinct PromotionScalarFieldEnum | PromotionScalarFieldEnum[] No

Output

Type: Promotion
Required: No
List: No

findMany

Find zero or more Promotion

// Get all Promotion
const Promotion = await prisma.promotion.findMany()
// Get first 10 Promotion
const Promotion = await prisma.promotion.findMany({ take: 10 })

Input

Name Type Required
where PromotionWhereInput No
orderBy PromotionOrderByWithRelationInput[] | PromotionOrderByWithRelationInput No
cursor PromotionWhereUniqueInput No
take Int No
skip Int No
distinct PromotionScalarFieldEnum | PromotionScalarFieldEnum[] No

Output

Type: Promotion
Required: Yes
List: Yes

create

Create one Promotion

// Create one Promotion
const Promotion = await prisma.promotion.create({
  data: {
    // ... data to create a Promotion
  }
})

Input

Name Type Required
data PromotionCreateInput | PromotionUncheckedCreateInput Yes

Output

Type: Promotion
Required: Yes
List: No

delete

Delete one Promotion

// Delete one Promotion
const Promotion = await prisma.promotion.delete({
  where: {
    // ... filter to delete one Promotion
  }
})

Input

Name Type Required
where PromotionWhereUniqueInput Yes

Output

Type: Promotion
Required: No
List: No

update

Update one Promotion

// Update one Promotion
const promotion = await prisma.promotion.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PromotionUpdateInput | PromotionUncheckedUpdateInput Yes
where PromotionWhereUniqueInput Yes

Output

Type: Promotion
Required: No
List: No

deleteMany

Delete zero or more Promotion

// Delete a few Promotion
const { count } = await prisma.promotion.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PromotionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Promotion

const { count } = await prisma.promotion.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PromotionUpdateManyMutationInput | PromotionUncheckedUpdateManyInput Yes
where PromotionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Promotion

// Update or create a Promotion
const promotion = await prisma.promotion.upsert({
  create: {
    // ... data to create a Promotion
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Promotion we want to update
  }
})

Input

Name Type Required
where PromotionWhereUniqueInput Yes
create PromotionCreateInput | PromotionUncheckedCreateInput Yes
update PromotionUpdateInput | PromotionUncheckedUpdateInput Yes

Output

Type: Promotion
Required: Yes
List: No

Payment

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
amount Decimal
  • -
Yes -
date DateTime
  • -
Yes -
center String?
  • -
No -
package Package
  • -
Yes -
packageId String
  • -
Yes -
paymentMethod String
  • -
Yes -
cashier User
  • -
Yes -
cashierId String
  • -
Yes -
revoked Boolean?
  • -
No -
createAt DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Payment

// Get one Payment
const payment = await prisma.payment.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PaymentWhereUniqueInput Yes

Output

Type: Payment
Required: No
List: No

findFirst

Find first Payment

// Get one Payment
const payment = await prisma.payment.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PaymentWhereInput No
orderBy PaymentOrderByWithRelationInput[] | PaymentOrderByWithRelationInput No
cursor PaymentWhereUniqueInput No
take Int No
skip Int No
distinct PaymentScalarFieldEnum | PaymentScalarFieldEnum[] No

Output

Type: Payment
Required: No
List: No

findMany

Find zero or more Payment

// Get all Payment
const Payment = await prisma.payment.findMany()
// Get first 10 Payment
const Payment = await prisma.payment.findMany({ take: 10 })

Input

Name Type Required
where PaymentWhereInput No
orderBy PaymentOrderByWithRelationInput[] | PaymentOrderByWithRelationInput No
cursor PaymentWhereUniqueInput No
take Int No
skip Int No
distinct PaymentScalarFieldEnum | PaymentScalarFieldEnum[] No

Output

Type: Payment
Required: Yes
List: Yes

create

Create one Payment

// Create one Payment
const Payment = await prisma.payment.create({
  data: {
    // ... data to create a Payment
  }
})

Input

Name Type Required
data PaymentCreateInput | PaymentUncheckedCreateInput Yes

Output

Type: Payment
Required: Yes
List: No

delete

Delete one Payment

// Delete one Payment
const Payment = await prisma.payment.delete({
  where: {
    // ... filter to delete one Payment
  }
})

Input

Name Type Required
where PaymentWhereUniqueInput Yes

Output

Type: Payment
Required: No
List: No

update

Update one Payment

// Update one Payment
const payment = await prisma.payment.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PaymentUpdateInput | PaymentUncheckedUpdateInput Yes
where PaymentWhereUniqueInput Yes

Output

Type: Payment
Required: No
List: No

deleteMany

Delete zero or more Payment

// Delete a few Payment
const { count } = await prisma.payment.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where PaymentWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Payment

const { count } = await prisma.payment.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data PaymentUpdateManyMutationInput | PaymentUncheckedUpdateManyInput Yes
where PaymentWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Payment

// Update or create a Payment
const payment = await prisma.payment.upsert({
  create: {
    // ... data to create a Payment
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Payment we want to update
  }
})

Input

Name Type Required
where PaymentWhereUniqueInput Yes
create PaymentCreateInput | PaymentUncheckedCreateInput Yes
update PaymentUpdateInput | PaymentUncheckedUpdateInput Yes

Output

Type: Payment
Required: Yes
List: No

Category

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
name String
  • @unique
Yes -
description String?
  • -
No -
icon String?
  • -
No -
industries Industry[]
  • -
Yes -
createdBy String?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -
brandTemplate BrandTemplate[]
  • -
Yes -

Operations

findUnique

Find zero or one Category

// Get one Category
const category = await prisma.category.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CategoryWhereUniqueInput Yes

Output

Type: Category
Required: No
List: No

findFirst

Find first Category

// Get one Category
const category = await prisma.category.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CategoryWhereInput No
orderBy CategoryOrderByWithRelationInput[] | CategoryOrderByWithRelationInput No
cursor CategoryWhereUniqueInput No
take Int No
skip Int No
distinct CategoryScalarFieldEnum | CategoryScalarFieldEnum[] No

Output

Type: Category
Required: No
List: No

findMany

Find zero or more Category

// Get all Category
const Category = await prisma.category.findMany()
// Get first 10 Category
const Category = await prisma.category.findMany({ take: 10 })

Input

Name Type Required
where CategoryWhereInput No
orderBy CategoryOrderByWithRelationInput[] | CategoryOrderByWithRelationInput No
cursor CategoryWhereUniqueInput No
take Int No
skip Int No
distinct CategoryScalarFieldEnum | CategoryScalarFieldEnum[] No

Output

Type: Category
Required: Yes
List: Yes

create

Create one Category

// Create one Category
const Category = await prisma.category.create({
  data: {
    // ... data to create a Category
  }
})

Input

Name Type Required
data CategoryCreateInput | CategoryUncheckedCreateInput Yes

Output

Type: Category
Required: Yes
List: No

delete

Delete one Category

// Delete one Category
const Category = await prisma.category.delete({
  where: {
    // ... filter to delete one Category
  }
})

Input

Name Type Required
where CategoryWhereUniqueInput Yes

Output

Type: Category
Required: No
List: No

update

Update one Category

// Update one Category
const category = await prisma.category.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CategoryUpdateInput | CategoryUncheckedUpdateInput Yes
where CategoryWhereUniqueInput Yes

Output

Type: Category
Required: No
List: No

deleteMany

Delete zero or more Category

// Delete a few Category
const { count } = await prisma.category.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CategoryWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Category

const { count } = await prisma.category.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CategoryUpdateManyMutationInput | CategoryUncheckedUpdateManyInput Yes
where CategoryWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Category

// Update or create a Category
const category = await prisma.category.upsert({
  create: {
    // ... data to create a Category
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Category we want to update
  }
})

Input

Name Type Required
where CategoryWhereUniqueInput Yes
create CategoryCreateInput | CategoryUncheckedCreateInput Yes
update CategoryUpdateInput | CategoryUncheckedUpdateInput Yes

Output

Type: Category
Required: Yes
List: No

Image

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
url String
  • @unique
Yes -
incomplete Boolean?
  • -
No -
incompleteMessage String?
  • -
No -
isTransparent Boolean?
  • -
No -
side ImageSide
  • @default(front)
Yes -
brandTemplate BrandTemplate[]
  • -
Yes -

Operations

findUnique

Find zero or one Image

// Get one Image
const image = await prisma.image.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ImageWhereUniqueInput Yes

Output

Type: Image
Required: No
List: No

findFirst

Find first Image

// Get one Image
const image = await prisma.image.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ImageWhereInput No
orderBy ImageOrderByWithRelationInput[] | ImageOrderByWithRelationInput No
cursor ImageWhereUniqueInput No
take Int No
skip Int No
distinct ImageScalarFieldEnum | ImageScalarFieldEnum[] No

Output

Type: Image
Required: No
List: No

findMany

Find zero or more Image

// Get all Image
const Image = await prisma.image.findMany()
// Get first 10 Image
const Image = await prisma.image.findMany({ take: 10 })

Input

Name Type Required
where ImageWhereInput No
orderBy ImageOrderByWithRelationInput[] | ImageOrderByWithRelationInput No
cursor ImageWhereUniqueInput No
take Int No
skip Int No
distinct ImageScalarFieldEnum | ImageScalarFieldEnum[] No

Output

Type: Image
Required: Yes
List: Yes

create

Create one Image

// Create one Image
const Image = await prisma.image.create({
  data: {
    // ... data to create a Image
  }
})

Input

Name Type Required
data ImageCreateInput | ImageUncheckedCreateInput Yes

Output

Type: Image
Required: Yes
List: No

delete

Delete one Image

// Delete one Image
const Image = await prisma.image.delete({
  where: {
    // ... filter to delete one Image
  }
})

Input

Name Type Required
where ImageWhereUniqueInput Yes

Output

Type: Image
Required: No
List: No

update

Update one Image

// Update one Image
const image = await prisma.image.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ImageUpdateInput | ImageUncheckedUpdateInput Yes
where ImageWhereUniqueInput Yes

Output

Type: Image
Required: No
List: No

deleteMany

Delete zero or more Image

// Delete a few Image
const { count } = await prisma.image.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ImageWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Image

const { count } = await prisma.image.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ImageUpdateManyMutationInput | ImageUncheckedUpdateManyInput Yes
where ImageWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Image

// Update or create a Image
const image = await prisma.image.upsert({
  create: {
    // ... data to create a Image
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Image we want to update
  }
})

Input

Name Type Required
where ImageWhereUniqueInput Yes
create ImageCreateInput | ImageUncheckedCreateInput Yes
update ImageUpdateInput | ImageUncheckedUpdateInput Yes

Output

Type: Image
Required: Yes
List: No

ClientEdit

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
clientId String?
  • -
No -
action ClientEditAction
  • -
Yes -
field String
  • -
Yes -
newValue String
  • -
Yes -
oldValue String
  • -
Yes -
approved Boolean?
  • -
No -
approvedTime DateTime?
  • -
No -
approvedBy User?
  • -
No -
approvedById String?
  • -
No -
brandTemplate BrandTemplate
  • -
Yes -
brandTemplateId String
  • -
Yes -

Operations

findUnique

Find zero or one ClientEdit

// Get one ClientEdit
const clientEdit = await prisma.clientEdit.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ClientEditWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ClientEdit

// Get one ClientEdit
const clientEdit = await prisma.clientEdit.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ClientEditWhereInput No
orderBy ClientEditOrderByWithRelationInput[] | ClientEditOrderByWithRelationInput No
cursor ClientEditWhereUniqueInput No
take Int No
skip Int No
distinct ClientEditScalarFieldEnum | ClientEditScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ClientEdit

// Get all ClientEdit
const ClientEdit = await prisma.clientEdit.findMany()
// Get first 10 ClientEdit
const ClientEdit = await prisma.clientEdit.findMany({ take: 10 })

Input

Name Type Required
where ClientEditWhereInput No
orderBy ClientEditOrderByWithRelationInput[] | ClientEditOrderByWithRelationInput No
cursor ClientEditWhereUniqueInput No
take Int No
skip Int No
distinct ClientEditScalarFieldEnum | ClientEditScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ClientEdit

// Create one ClientEdit
const ClientEdit = await prisma.clientEdit.create({
  data: {
    // ... data to create a ClientEdit
  }
})

Input

Name Type Required
data ClientEditCreateInput | ClientEditUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ClientEdit

// Delete one ClientEdit
const ClientEdit = await prisma.clientEdit.delete({
  where: {
    // ... filter to delete one ClientEdit
  }
})

Input

Name Type Required
where ClientEditWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ClientEdit

// Update one ClientEdit
const clientEdit = await prisma.clientEdit.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ClientEditUpdateInput | ClientEditUncheckedUpdateInput Yes
where ClientEditWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ClientEdit

// Delete a few ClientEdit
const { count } = await prisma.clientEdit.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ClientEditWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ClientEdit

const { count } = await prisma.clientEdit.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ClientEditUpdateManyMutationInput | ClientEditUncheckedUpdateManyInput Yes
where ClientEditWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ClientEdit

// Update or create a ClientEdit
const clientEdit = await prisma.clientEdit.upsert({
  create: {
    // ... data to create a ClientEdit
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ClientEdit we want to update
  }
})

Input

Name Type Required
where ClientEditWhereUniqueInput Yes
create ClientEditCreateInput | ClientEditUncheckedCreateInput Yes
update ClientEditUpdateInput | ClientEditUncheckedUpdateInput Yes

Output

Required: Yes
List: No

ClientRating

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
client_id String
  • -
Yes -
rating Int
  • -
Yes -
goodImplematation Boolean?
  • -
No -
comment String?
  • -
No -
brandTemplate BrandTemplate
  • -
Yes -
brandTemplateId String
  • -
Yes -

Operations

findUnique

Find zero or one ClientRating

// Get one ClientRating
const clientRating = await prisma.clientRating.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ClientRatingWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first ClientRating

// Get one ClientRating
const clientRating = await prisma.clientRating.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ClientRatingWhereInput No
orderBy ClientRatingOrderByWithRelationInput[] | ClientRatingOrderByWithRelationInput No
cursor ClientRatingWhereUniqueInput No
take Int No
skip Int No
distinct ClientRatingScalarFieldEnum | ClientRatingScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more ClientRating

// Get all ClientRating
const ClientRating = await prisma.clientRating.findMany()
// Get first 10 ClientRating
const ClientRating = await prisma.clientRating.findMany({ take: 10 })

Input

Name Type Required
where ClientRatingWhereInput No
orderBy ClientRatingOrderByWithRelationInput[] | ClientRatingOrderByWithRelationInput No
cursor ClientRatingWhereUniqueInput No
take Int No
skip Int No
distinct ClientRatingScalarFieldEnum | ClientRatingScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one ClientRating

// Create one ClientRating
const ClientRating = await prisma.clientRating.create({
  data: {
    // ... data to create a ClientRating
  }
})

Input

Name Type Required
data ClientRatingCreateInput | ClientRatingUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one ClientRating

// Delete one ClientRating
const ClientRating = await prisma.clientRating.delete({
  where: {
    // ... filter to delete one ClientRating
  }
})

Input

Name Type Required
where ClientRatingWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one ClientRating

// Update one ClientRating
const clientRating = await prisma.clientRating.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ClientRatingUpdateInput | ClientRatingUncheckedUpdateInput Yes
where ClientRatingWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more ClientRating

// Delete a few ClientRating
const { count } = await prisma.clientRating.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ClientRatingWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one ClientRating

const { count } = await prisma.clientRating.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ClientRatingUpdateManyMutationInput | ClientRatingUncheckedUpdateManyInput Yes
where ClientRatingWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one ClientRating

// Update or create a ClientRating
const clientRating = await prisma.clientRating.upsert({
  create: {
    // ... data to create a ClientRating
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the ClientRating we want to update
  }
})

Input

Name Type Required
where ClientRatingWhereUniqueInput Yes
create ClientRatingCreateInput | ClientRatingUncheckedCreateInput Yes
update ClientRatingUpdateInput | ClientRatingUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Tel

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
name String
  • -
Yes -
number String
  • -
Yes -
brandTemplate BrandTemplate
  • -
Yes -
brandTemplateId String
  • -
Yes -

Operations

findUnique

Find zero or one Tel

// Get one Tel
const tel = await prisma.tel.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TelWhereUniqueInput Yes

Output

Type: Tel
Required: No
List: No

findFirst

Find first Tel

// Get one Tel
const tel = await prisma.tel.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TelWhereInput No
orderBy TelOrderByWithRelationInput[] | TelOrderByWithRelationInput No
cursor TelWhereUniqueInput No
take Int No
skip Int No
distinct TelScalarFieldEnum | TelScalarFieldEnum[] No

Output

Type: Tel
Required: No
List: No

findMany

Find zero or more Tel

// Get all Tel
const Tel = await prisma.tel.findMany()
// Get first 10 Tel
const Tel = await prisma.tel.findMany({ take: 10 })

Input

Name Type Required
where TelWhereInput No
orderBy TelOrderByWithRelationInput[] | TelOrderByWithRelationInput No
cursor TelWhereUniqueInput No
take Int No
skip Int No
distinct TelScalarFieldEnum | TelScalarFieldEnum[] No

Output

Type: Tel
Required: Yes
List: Yes

create

Create one Tel

// Create one Tel
const Tel = await prisma.tel.create({
  data: {
    // ... data to create a Tel
  }
})

Input

Name Type Required
data TelCreateInput | TelUncheckedCreateInput Yes

Output

Type: Tel
Required: Yes
List: No

delete

Delete one Tel

// Delete one Tel
const Tel = await prisma.tel.delete({
  where: {
    // ... filter to delete one Tel
  }
})

Input

Name Type Required
where TelWhereUniqueInput Yes

Output

Type: Tel
Required: No
List: No

update

Update one Tel

// Update one Tel
const tel = await prisma.tel.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TelUpdateInput | TelUncheckedUpdateInput Yes
where TelWhereUniqueInput Yes

Output

Type: Tel
Required: No
List: No

deleteMany

Delete zero or more Tel

// Delete a few Tel
const { count } = await prisma.tel.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TelWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Tel

const { count } = await prisma.tel.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TelUpdateManyMutationInput | TelUncheckedUpdateManyInput Yes
where TelWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Tel

// Update or create a Tel
const tel = await prisma.tel.upsert({
  create: {
    // ... data to create a Tel
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Tel we want to update
  }
})

Input

Name Type Required
where TelWhereUniqueInput Yes
create TelCreateInput | TelUncheckedCreateInput Yes
update TelUpdateInput | TelUncheckedUpdateInput Yes

Output

Type: Tel
Required: Yes
List: No

BrandTemplate

Fields

Name Type Attributes Required Comment
id String
  • @id
  • @default(uuid())
Yes -
name String
  • @unique
Yes -
description String?
  • -
No -
tags String[]
  • -
Yes -
image Image?
  • -
No -
imageId String?
  • -
No -
threeDImage String?
  • -
No -
video String?
  • -
No -
sizes String[]
  • -
Yes -
units String[]
  • -
Yes -
category Category
  • -
Yes -
categoryId String
  • -
Yes -
addon_categories String[]
  • -
Yes -
varieties String[]
  • -
Yes -
manufacturer String
  • -
Yes -
street_address String?
  • -
No -
city String?
  • -
No -
country Country?
  • -
No -
countryId String?
  • -
No -
email String?
  • -
No -
telNumbers Tel[]
  • -
Yes -
website String?
  • -
No -
draftNotes String?
  • -
No -
draftType String?
  • -
No -
draftCreatedAt DateTime
  • -
Yes -
createdBy User?
  • -
No -
createdById String?
  • -
No -
createdAt DateTime
  • @default(now())
Yes -
reviewedAt DateTime?
  • -
No -
reviewNotes String?
  • -
No -
reviewer User?
  • -
No -
reviewerId String?
  • -
No -
inReview Boolean?
  • -
No -
isApproved Boolean?
  • -
No -
lastModified DateTime
  • @updatedAt
Yes -
client_edits ClientEdit[]
  • -
Yes -
creatorClientId String?
  • -
No -
creatorClientProductId String?
  • -
No -
fromClientCleanedBy String?
  • -
No -
implementationRatings ClientRating[]
  • -
Yes -
hasZeroDepositOrder Boolean?
  • -
No -
hasTransparencyAll Boolean?
  • -
No -
isNotForUnder18 Boolean?
  • -
No -
isDirty Boolean?
  • -
No -

Operations

findUnique

Find zero or one BrandTemplate

// Get one BrandTemplate
const brandTemplate = await prisma.brandTemplate.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BrandTemplateWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first BrandTemplate

// Get one BrandTemplate
const brandTemplate = await prisma.brandTemplate.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BrandTemplateWhereInput No
orderBy BrandTemplateOrderByWithRelationInput[] | BrandTemplateOrderByWithRelationInput No
cursor BrandTemplateWhereUniqueInput No
take Int No
skip Int No
distinct BrandTemplateScalarFieldEnum | BrandTemplateScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more BrandTemplate

// Get all BrandTemplate
const BrandTemplate = await prisma.brandTemplate.findMany()
// Get first 10 BrandTemplate
const BrandTemplate = await prisma.brandTemplate.findMany({ take: 10 })

Input

Name Type Required
where BrandTemplateWhereInput No
orderBy BrandTemplateOrderByWithRelationInput[] | BrandTemplateOrderByWithRelationInput No
cursor BrandTemplateWhereUniqueInput No
take Int No
skip Int No
distinct BrandTemplateScalarFieldEnum | BrandTemplateScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one BrandTemplate

// Create one BrandTemplate
const BrandTemplate = await prisma.brandTemplate.create({
  data: {
    // ... data to create a BrandTemplate
  }
})

Input

Name Type Required
data BrandTemplateCreateInput | BrandTemplateUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one BrandTemplate

// Delete one BrandTemplate
const BrandTemplate = await prisma.brandTemplate.delete({
  where: {
    // ... filter to delete one BrandTemplate
  }
})

Input

Name Type Required
where BrandTemplateWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one BrandTemplate

// Update one BrandTemplate
const brandTemplate = await prisma.brandTemplate.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BrandTemplateUpdateInput | BrandTemplateUncheckedUpdateInput Yes
where BrandTemplateWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more BrandTemplate

// Delete a few BrandTemplate
const { count } = await prisma.brandTemplate.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BrandTemplateWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one BrandTemplate

const { count } = await prisma.brandTemplate.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BrandTemplateUpdateManyMutationInput | BrandTemplateUncheckedUpdateManyInput Yes
where BrandTemplateWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one BrandTemplate

// Update or create a BrandTemplate
const brandTemplate = await prisma.brandTemplate.upsert({
  create: {
    // ... data to create a BrandTemplate
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the BrandTemplate we want to update
  }
})

Input

Name Type Required
where BrandTemplateWhereUniqueInput Yes
create BrandTemplateCreateInput | BrandTemplateUncheckedCreateInput Yes
update BrandTemplateUpdateInput | BrandTemplateUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Types

Input Types

IndustryWhereInput

Name Type Nullable
AND IndustryWhereInput | IndustryWhereInput[] No
OR IndustryWhereInput[] No
NOT IndustryWhereInput | IndustryWhereInput[] No
id StringFilter | String No
name StringFilter | String No
promotions PromotionListRelationFilter No
categories CategoryListRelationFilter No
features FeatureListRelationFilter No

IndustryOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
promotions PromotionOrderByRelationAggregateInput No
categories CategoryOrderByRelationAggregateInput No
features FeatureOrderByRelationAggregateInput No

IndustryWhereUniqueInput

Name Type Nullable
id String No
name String No
AND IndustryWhereInput | IndustryWhereInput[] No
OR IndustryWhereInput[] No
NOT IndustryWhereInput | IndustryWhereInput[] No
promotions PromotionListRelationFilter No
categories CategoryListRelationFilter No
features FeatureListRelationFilter No

IndustryOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
_count IndustryCountOrderByAggregateInput No
_max IndustryMaxOrderByAggregateInput No
_min IndustryMinOrderByAggregateInput No


CountryWhereInput

Name Type Nullable
AND CountryWhereInput | CountryWhereInput[] No
OR CountryWhereInput[] No
NOT CountryWhereInput | CountryWhereInput[] No
id StringFilter | String No
name StringFilter | String No
user UserListRelationFilter No
promotions PromotionListRelationFilter No
brandTemplate BrandTemplateListRelationFilter No
features FeatureListRelationFilter No

CountryOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
user UserOrderByRelationAggregateInput No
promotions PromotionOrderByRelationAggregateInput No
brandTemplate BrandTemplateOrderByRelationAggregateInput No
features FeatureOrderByRelationAggregateInput No

CountryWhereUniqueInput

Name Type Nullable
id String No
name String No
AND CountryWhereInput | CountryWhereInput[] No
OR CountryWhereInput[] No
NOT CountryWhereInput | CountryWhereInput[] No
user UserListRelationFilter No
promotions PromotionListRelationFilter No
brandTemplate BrandTemplateListRelationFilter No
features FeatureListRelationFilter No

CountryOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
_count CountryCountOrderByAggregateInput No
_max CountryMaxOrderByAggregateInput No
_min CountryMinOrderByAggregateInput No


RoleWhereInput

Name Type Nullable
AND RoleWhereInput | RoleWhereInput[] No
OR RoleWhereInput[] No
NOT RoleWhereInput | RoleWhereInput[] No
id StringFilter | String No
name StringFilter | String No
description StringNullableFilter | String | Null Yes
permissions PermissionsListRelationFilter No
user UserListRelationFilter No

RoleOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder | SortOrderInput No
permissions PermissionsOrderByRelationAggregateInput No
user UserOrderByRelationAggregateInput No

RoleWhereUniqueInput

Name Type Nullable
id String No
name String No
AND RoleWhereInput | RoleWhereInput[] No
OR RoleWhereInput[] No
NOT RoleWhereInput | RoleWhereInput[] No
description StringNullableFilter | String | Null Yes
permissions PermissionsListRelationFilter No
user UserListRelationFilter No

RoleOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder | SortOrderInput No
_count RoleCountOrderByAggregateInput No
_max RoleMaxOrderByAggregateInput No
_min RoleMinOrderByAggregateInput No


DomainWhereInput

Name Type Nullable
AND DomainWhereInput | DomainWhereInput[] No
OR DomainWhereInput[] No
NOT DomainWhereInput | DomainWhereInput[] No
id StringFilter | String No
name StringFilter | String No
description StringNullableFilter | String | Null Yes
permissions PermissionsListRelationFilter No

DomainOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder | SortOrderInput No
permissions PermissionsOrderByRelationAggregateInput No

DomainWhereUniqueInput

Name Type Nullable
id String No
name String No
AND DomainWhereInput | DomainWhereInput[] No
OR DomainWhereInput[] No
NOT DomainWhereInput | DomainWhereInput[] No
description StringNullableFilter | String | Null Yes
permissions PermissionsListRelationFilter No

DomainOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder | SortOrderInput No
_count DomainCountOrderByAggregateInput No
_max DomainMaxOrderByAggregateInput No
_min DomainMinOrderByAggregateInput No


PermissionsWhereInput

Name Type Nullable
AND PermissionsWhereInput | PermissionsWhereInput[] No
OR PermissionsWhereInput[] No
NOT PermissionsWhereInput | PermissionsWhereInput[] No
id StringFilter | String No
accessLevel EnumPermissionTypesFilter | PermissionTypes No
domainId StringFilter | String No
roleId StringFilter | String No
domain DomainRelationFilter | DomainWhereInput No
role RoleRelationFilter | RoleWhereInput No

PermissionsOrderByWithRelationInput

Name Type Nullable
id SortOrder No
accessLevel SortOrder No
domainId SortOrder No
roleId SortOrder No
domain DomainOrderByWithRelationInput No
role RoleOrderByWithRelationInput No

PermissionsWhereUniqueInput

Name Type Nullable
id String No
AND PermissionsWhereInput | PermissionsWhereInput[] No
OR PermissionsWhereInput[] No
NOT PermissionsWhereInput | PermissionsWhereInput[] No
accessLevel EnumPermissionTypesFilter | PermissionTypes No
domainId StringFilter | String No
roleId StringFilter | String No
domain DomainRelationFilter | DomainWhereInput No
role RoleRelationFilter | RoleWhereInput No

PermissionsOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
accessLevel SortOrder No
domainId SortOrder No
roleId SortOrder No
_count PermissionsCountOrderByAggregateInput No
_max PermissionsMaxOrderByAggregateInput No
_min PermissionsMinOrderByAggregateInput No


UserWhereInput

Name Type Nullable
AND UserWhereInput | UserWhereInput[] No
OR UserWhereInput[] No
NOT UserWhereInput | UserWhereInput[] No
id StringFilter | String No
name StringFilter | String No
email StringFilter | String No
password StringNullableFilter | String | Null Yes
token StringNullableFilter | String | Null Yes
fcm_token StringNullableFilter | String | Null Yes
avatar StringNullableFilter | String | Null Yes
roleId StringNullableFilter | String | Null Yes
suspendendAt DateTimeNullableFilter | DateTime | Null Yes
status EnumUserStatusNullableFilter | UserStatus | Null Yes
streetAddress StringNullableFilter | String | Null Yes
city StringNullableFilter | String | Null Yes
cell StringNullableFilter | String | Null Yes
tell StringNullableFilter | String | Null Yes
verificationCode IntNullableFilter | Int | Null Yes
countryId StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
role RoleNullableRelationFilter | RoleWhereInput | Null Yes
country CountryNullableRelationFilter | CountryWhereInput | Null Yes
teams TeamListRelationFilter No
assignedTasks TaskListRelationFilter No
createdTasks TaskListRelationFilter No
promotion PromotionListRelationFilter No
payment PaymentListRelationFilter No
createdTemplates BrandTemplateListRelationFilter No
reviewedTemplates BrandTemplateListRelationFilter No
clientEdits ClientEditListRelationFilter No

UserOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
email SortOrder No
password SortOrder | SortOrderInput No
token SortOrder | SortOrderInput No
fcm_token SortOrder | SortOrderInput No
avatar SortOrder | SortOrderInput No
roleId SortOrder | SortOrderInput No
suspendendAt SortOrder | SortOrderInput No
status SortOrder | SortOrderInput No
streetAddress SortOrder | SortOrderInput No
city SortOrder | SortOrderInput No
cell SortOrder | SortOrderInput No
tell SortOrder | SortOrderInput No
verificationCode SortOrder | SortOrderInput No
countryId SortOrder | SortOrderInput No
createdAt SortOrder No
role RoleOrderByWithRelationInput No
country CountryOrderByWithRelationInput No
teams TeamOrderByRelationAggregateInput No
assignedTasks TaskOrderByRelationAggregateInput No
createdTasks TaskOrderByRelationAggregateInput No
promotion PromotionOrderByRelationAggregateInput No
payment PaymentOrderByRelationAggregateInput No
createdTemplates BrandTemplateOrderByRelationAggregateInput No
reviewedTemplates BrandTemplateOrderByRelationAggregateInput No
clientEdits ClientEditOrderByRelationAggregateInput No

UserWhereUniqueInput

Name Type Nullable
id String No
email String No
AND UserWhereInput | UserWhereInput[] No
OR UserWhereInput[] No
NOT UserWhereInput | UserWhereInput[] No
name StringFilter | String No
password StringNullableFilter | String | Null Yes
token StringNullableFilter | String | Null Yes
fcm_token StringNullableFilter | String | Null Yes
avatar StringNullableFilter | String | Null Yes
roleId StringNullableFilter | String | Null Yes
suspendendAt DateTimeNullableFilter | DateTime | Null Yes
status EnumUserStatusNullableFilter | UserStatus | Null Yes
streetAddress StringNullableFilter | String | Null Yes
city StringNullableFilter | String | Null Yes
cell StringNullableFilter | String | Null Yes
tell StringNullableFilter | String | Null Yes
verificationCode IntNullableFilter | Int | Null Yes
countryId StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
role RoleNullableRelationFilter | RoleWhereInput | Null Yes
country CountryNullableRelationFilter | CountryWhereInput | Null Yes
teams TeamListRelationFilter No
assignedTasks TaskListRelationFilter No
createdTasks TaskListRelationFilter No
promotion PromotionListRelationFilter No
payment PaymentListRelationFilter No
createdTemplates BrandTemplateListRelationFilter No
reviewedTemplates BrandTemplateListRelationFilter No
clientEdits ClientEditListRelationFilter No

UserOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
email SortOrder No
password SortOrder | SortOrderInput No
token SortOrder | SortOrderInput No
fcm_token SortOrder | SortOrderInput No
avatar SortOrder | SortOrderInput No
roleId SortOrder | SortOrderInput No
suspendendAt SortOrder | SortOrderInput No
status SortOrder | SortOrderInput No
streetAddress SortOrder | SortOrderInput No
city SortOrder | SortOrderInput No
cell SortOrder | SortOrderInput No
tell SortOrder | SortOrderInput No
verificationCode SortOrder | SortOrderInput No
countryId SortOrder | SortOrderInput No
createdAt SortOrder No
_count UserCountOrderByAggregateInput No
_avg UserAvgOrderByAggregateInput No
_max UserMaxOrderByAggregateInput No
_min UserMinOrderByAggregateInput No
_sum UserSumOrderByAggregateInput No

UserScalarWhereWithAggregatesInput

Name Type Nullable
AND UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] No
OR UserScalarWhereWithAggregatesInput[] No
NOT UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
name StringWithAggregatesFilter | String No
email StringWithAggregatesFilter | String No
password StringNullableWithAggregatesFilter | String | Null Yes
token StringNullableWithAggregatesFilter | String | Null Yes
fcm_token StringNullableWithAggregatesFilter | String | Null Yes
avatar StringNullableWithAggregatesFilter | String | Null Yes
roleId StringNullableWithAggregatesFilter | String | Null Yes
suspendendAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
status EnumUserStatusNullableWithAggregatesFilter | UserStatus | Null Yes
streetAddress StringNullableWithAggregatesFilter | String | Null Yes
city StringNullableWithAggregatesFilter | String | Null Yes
cell StringNullableWithAggregatesFilter | String | Null Yes
tell StringNullableWithAggregatesFilter | String | Null Yes
verificationCode IntNullableWithAggregatesFilter | Int | Null Yes
countryId StringNullableWithAggregatesFilter | String | Null Yes
createdAt DateTimeWithAggregatesFilter | DateTime No

TeamWhereInput

Name Type Nullable
AND TeamWhereInput | TeamWhereInput[] No
OR TeamWhereInput[] No
NOT TeamWhereInput | TeamWhereInput[] No
id StringFilter | String No
name StringFilter | String No
createdAt DateTimeFilter | DateTime No
leader StringFilter | String No
userId StringNullableFilter | String | Null Yes
user UserNullableRelationFilter | UserWhereInput | Null Yes
goals GoalListRelationFilter No

TeamOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
createdAt SortOrder No
leader SortOrder No
userId SortOrder | SortOrderInput No
user UserOrderByWithRelationInput No
goals GoalOrderByRelationAggregateInput No

TeamWhereUniqueInput

Name Type Nullable
id String No
AND TeamWhereInput | TeamWhereInput[] No
OR TeamWhereInput[] No
NOT TeamWhereInput | TeamWhereInput[] No
name StringFilter | String No
createdAt DateTimeFilter | DateTime No
leader StringFilter | String No
userId StringNullableFilter | String | Null Yes
user UserNullableRelationFilter | UserWhereInput | Null Yes
goals GoalListRelationFilter No

TeamOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
createdAt SortOrder No
leader SortOrder No
userId SortOrder | SortOrderInput No
_count TeamCountOrderByAggregateInput No
_max TeamMaxOrderByAggregateInput No
_min TeamMinOrderByAggregateInput No


GoalWhereInput

Name Type Nullable
AND GoalWhereInput | GoalWhereInput[] No
OR GoalWhereInput[] No
NOT GoalWhereInput | GoalWhereInput[] No
id StringFilter | String No
title StringFilter | String No
description StringNullableFilter | String | Null Yes
startDate DateTimeNullableFilter | DateTime | Null Yes
createdAt DateTimeFilter | DateTime No
deadline DateTimeNullableFilter | DateTime | Null Yes
active BoolNullableFilter | Boolean | Null Yes
isComplete BoolNullableFilter | Boolean | Null Yes
teams TeamListRelationFilter No
tasks TaskListRelationFilter No

GoalOrderByWithRelationInput

Name Type Nullable
id SortOrder No
title SortOrder No
description SortOrder | SortOrderInput No
startDate SortOrder | SortOrderInput No
createdAt SortOrder No
deadline SortOrder | SortOrderInput No
active SortOrder | SortOrderInput No
isComplete SortOrder | SortOrderInput No
teams TeamOrderByRelationAggregateInput No
tasks TaskOrderByRelationAggregateInput No

GoalWhereUniqueInput

Name Type Nullable
id String No
title String No
AND GoalWhereInput | GoalWhereInput[] No
OR GoalWhereInput[] No
NOT GoalWhereInput | GoalWhereInput[] No
description StringNullableFilter | String | Null Yes
startDate DateTimeNullableFilter | DateTime | Null Yes
createdAt DateTimeFilter | DateTime No
deadline DateTimeNullableFilter | DateTime | Null Yes
active BoolNullableFilter | Boolean | Null Yes
isComplete BoolNullableFilter | Boolean | Null Yes
teams TeamListRelationFilter No
tasks TaskListRelationFilter No

GoalOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
title SortOrder No
description SortOrder | SortOrderInput No
startDate SortOrder | SortOrderInput No
createdAt SortOrder No
deadline SortOrder | SortOrderInput No
active SortOrder | SortOrderInput No
isComplete SortOrder | SortOrderInput No
_count GoalCountOrderByAggregateInput No
_max GoalMaxOrderByAggregateInput No
_min GoalMinOrderByAggregateInput No

GoalScalarWhereWithAggregatesInput

Name Type Nullable
AND GoalScalarWhereWithAggregatesInput | GoalScalarWhereWithAggregatesInput[] No
OR GoalScalarWhereWithAggregatesInput[] No
NOT GoalScalarWhereWithAggregatesInput | GoalScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
title StringWithAggregatesFilter | String No
description StringNullableWithAggregatesFilter | String | Null Yes
startDate DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
createdAt DateTimeWithAggregatesFilter | DateTime No
deadline DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
active BoolNullableWithAggregatesFilter | Boolean | Null Yes
isComplete BoolNullableWithAggregatesFilter | Boolean | Null Yes

TaskWhereInput

Name Type Nullable
AND TaskWhereInput | TaskWhereInput[] No
OR TaskWhereInput[] No
NOT TaskWhereInput | TaskWhereInput[] No
id StringFilter | String No
title StringFilter | String No
comments StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
startDate DateTimeNullableFilter | DateTime | Null Yes
dueDate DateTimeNullableFilter | DateTime | Null Yes
priority EnumTaskPriorityNullableFilter | TaskPriority | Null Yes
stage EnumTaskStageNullableFilter | TaskStage | Null Yes
GoalId StringNullableFilter | String | Null Yes
assigneeId StringNullableFilter | String | Null Yes
createdById StringNullableFilter | String | Null Yes
Goal GoalNullableRelationFilter | GoalWhereInput | Null Yes
assignee UserNullableRelationFilter | UserWhereInput | Null Yes
createdBy UserNullableRelationFilter | UserWhereInput | Null Yes

TaskOrderByWithRelationInput

Name Type Nullable
id SortOrder No
title SortOrder No
comments SortOrder | SortOrderInput No
createdAt SortOrder No
startDate SortOrder | SortOrderInput No
dueDate SortOrder | SortOrderInput No
priority SortOrder | SortOrderInput No
stage SortOrder | SortOrderInput No
GoalId SortOrder | SortOrderInput No
assigneeId SortOrder | SortOrderInput No
createdById SortOrder | SortOrderInput No
Goal GoalOrderByWithRelationInput No
assignee UserOrderByWithRelationInput No
createdBy UserOrderByWithRelationInput No

TaskWhereUniqueInput

Name Type Nullable
id String No
title String No
AND TaskWhereInput | TaskWhereInput[] No
OR TaskWhereInput[] No
NOT TaskWhereInput | TaskWhereInput[] No
comments StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
startDate DateTimeNullableFilter | DateTime | Null Yes
dueDate DateTimeNullableFilter | DateTime | Null Yes
priority EnumTaskPriorityNullableFilter | TaskPriority | Null Yes
stage EnumTaskStageNullableFilter | TaskStage | Null Yes
GoalId StringNullableFilter | String | Null Yes
assigneeId StringNullableFilter | String | Null Yes
createdById StringNullableFilter | String | Null Yes
Goal GoalNullableRelationFilter | GoalWhereInput | Null Yes
assignee UserNullableRelationFilter | UserWhereInput | Null Yes
createdBy UserNullableRelationFilter | UserWhereInput | Null Yes

TaskOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
title SortOrder No
comments SortOrder | SortOrderInput No
createdAt SortOrder No
startDate SortOrder | SortOrderInput No
dueDate SortOrder | SortOrderInput No
priority SortOrder | SortOrderInput No
stage SortOrder | SortOrderInput No
GoalId SortOrder | SortOrderInput No
assigneeId SortOrder | SortOrderInput No
createdById SortOrder | SortOrderInput No
_count TaskCountOrderByAggregateInput No
_max TaskMaxOrderByAggregateInput No
_min TaskMinOrderByAggregateInput No

TaskScalarWhereWithAggregatesInput

Name Type Nullable
AND TaskScalarWhereWithAggregatesInput | TaskScalarWhereWithAggregatesInput[] No
OR TaskScalarWhereWithAggregatesInput[] No
NOT TaskScalarWhereWithAggregatesInput | TaskScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
title StringWithAggregatesFilter | String No
comments StringNullableWithAggregatesFilter | String | Null Yes
createdAt DateTimeWithAggregatesFilter | DateTime No
startDate DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
dueDate DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
priority EnumTaskPriorityNullableWithAggregatesFilter | TaskPriority | Null Yes
stage EnumTaskStageNullableWithAggregatesFilter | TaskStage | Null Yes
GoalId StringNullableWithAggregatesFilter | String | Null Yes
assigneeId StringNullableWithAggregatesFilter | String | Null Yes
createdById StringNullableWithAggregatesFilter | String | Null Yes

FeatureWhereInput

Name Type Nullable
AND FeatureWhereInput | FeatureWhereInput[] No
OR FeatureWhereInput[] No
NOT FeatureWhereInput | FeatureWhereInput[] No
id StringFilter | String No
name StringFilter | String No
description StringNullableFilter | String | Null Yes
type EnumFeatureTypeFilter | FeatureType No
industries IndustryListRelationFilter No
countries CountryListRelationFilter No
promotions PromotionListRelationFilter No
packages PackageListRelationFilter No

FeatureOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder | SortOrderInput No
type SortOrder No
industries IndustryOrderByRelationAggregateInput No
countries CountryOrderByRelationAggregateInput No
promotions PromotionOrderByRelationAggregateInput No
packages PackageOrderByRelationAggregateInput No

FeatureWhereUniqueInput

Name Type Nullable
id String No
name String No
AND FeatureWhereInput | FeatureWhereInput[] No
OR FeatureWhereInput[] No
NOT FeatureWhereInput | FeatureWhereInput[] No
description StringNullableFilter | String | Null Yes
type EnumFeatureTypeFilter | FeatureType No
industries IndustryListRelationFilter No
countries CountryListRelationFilter No
promotions PromotionListRelationFilter No
packages PackageListRelationFilter No

FeatureOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder | SortOrderInput No
type SortOrder No
_count FeatureCountOrderByAggregateInput No
_max FeatureMaxOrderByAggregateInput No
_min FeatureMinOrderByAggregateInput No


PackageWhereInput

Name Type Nullable
AND PackageWhereInput | PackageWhereInput[] No
OR PackageWhereInput[] No
NOT PackageWhereInput | PackageWhereInput[] No
id StringFilter | String No
name StringFilter | String No
description StringNullableFilter | String | Null Yes
color StringNullableFilter | String | Null Yes
level IntFilter | Int No
prices PackagePriceListRelationFilter No
features FeatureListRelationFilter No
promotions PromotionListRelationFilter No
payment PaymentListRelationFilter No

PackageOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder | SortOrderInput No
color SortOrder | SortOrderInput No
level SortOrder No
prices PackagePriceOrderByRelationAggregateInput No
features FeatureOrderByRelationAggregateInput No
promotions PromotionOrderByRelationAggregateInput No
payment PaymentOrderByRelationAggregateInput No

PackageWhereUniqueInput

Name Type Nullable
id String No
name String No
level Int No
AND PackageWhereInput | PackageWhereInput[] No
OR PackageWhereInput[] No
NOT PackageWhereInput | PackageWhereInput[] No
description StringNullableFilter | String | Null Yes
color StringNullableFilter | String | Null Yes
prices PackagePriceListRelationFilter No
features FeatureListRelationFilter No
promotions PromotionListRelationFilter No
payment PaymentListRelationFilter No

PackageOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder | SortOrderInput No
color SortOrder | SortOrderInput No
level SortOrder No
_count PackageCountOrderByAggregateInput No
_avg PackageAvgOrderByAggregateInput No
_max PackageMaxOrderByAggregateInput No
_min PackageMinOrderByAggregateInput No
_sum PackageSumOrderByAggregateInput No


PackagePriceWhereInput

Name Type Nullable
AND PackagePriceWhereInput | PackagePriceWhereInput[] No
OR PackagePriceWhereInput[] No
NOT PackagePriceWhereInput | PackagePriceWhereInput[] No
id StringFilter | String No
duration FloatFilter | Float No
amount FloatFilter | Float No
extentionTime FloatNullableFilter | Float | Null Yes
packageId StringNullableFilter | String | Null Yes
Package PackageNullableRelationFilter | PackageWhereInput | Null Yes

PackagePriceOrderByWithRelationInput

Name Type Nullable
id SortOrder No
duration SortOrder No
amount SortOrder No
extentionTime SortOrder | SortOrderInput No
packageId SortOrder | SortOrderInput No
Package PackageOrderByWithRelationInput No

PackagePriceWhereUniqueInput

Name Type Nullable
id String No
AND PackagePriceWhereInput | PackagePriceWhereInput[] No
OR PackagePriceWhereInput[] No
NOT PackagePriceWhereInput | PackagePriceWhereInput[] No
duration FloatFilter | Float No
amount FloatFilter | Float No
extentionTime FloatNullableFilter | Float | Null Yes
packageId StringNullableFilter | String | Null Yes
Package PackageNullableRelationFilter | PackageWhereInput | Null Yes

PackagePriceOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
duration SortOrder No
amount SortOrder No
extentionTime SortOrder | SortOrderInput No
packageId SortOrder | SortOrderInput No
_count PackagePriceCountOrderByAggregateInput No
_avg PackagePriceAvgOrderByAggregateInput No
_max PackagePriceMaxOrderByAggregateInput No
_min PackagePriceMinOrderByAggregateInput No
_sum PackagePriceSumOrderByAggregateInput No


PromotionWhereInput

Name Type Nullable
AND PromotionWhereInput | PromotionWhereInput[] No
OR PromotionWhereInput[] No
NOT PromotionWhereInput | PromotionWhereInput[] No
id StringFilter | String No
name StringFilter | String No
description StringNullableFilter | String | Null Yes
startDate DateTimeFilter | DateTime No
endDate DateTimeFilter | DateTime No
createdById StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
features FeatureListRelationFilter No
industries IndustryListRelationFilter No
countries CountryListRelationFilter No
packages PackageListRelationFilter No
createdBy UserNullableRelationFilter | UserWhereInput | Null Yes

PromotionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder | SortOrderInput No
startDate SortOrder No
endDate SortOrder No
createdById SortOrder | SortOrderInput No
createdAt SortOrder No
features FeatureOrderByRelationAggregateInput No
industries IndustryOrderByRelationAggregateInput No
countries CountryOrderByRelationAggregateInput No
packages PackageOrderByRelationAggregateInput No
createdBy UserOrderByWithRelationInput No

PromotionWhereUniqueInput

Name Type Nullable
id String No
AND PromotionWhereInput | PromotionWhereInput[] No
OR PromotionWhereInput[] No
NOT PromotionWhereInput | PromotionWhereInput[] No
name StringFilter | String No
description StringNullableFilter | String | Null Yes
startDate DateTimeFilter | DateTime No
endDate DateTimeFilter | DateTime No
createdById StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
features FeatureListRelationFilter No
industries IndustryListRelationFilter No
countries CountryListRelationFilter No
packages PackageListRelationFilter No
createdBy UserNullableRelationFilter | UserWhereInput | Null Yes

PromotionOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder | SortOrderInput No
startDate SortOrder No
endDate SortOrder No
createdById SortOrder | SortOrderInput No
createdAt SortOrder No
_count PromotionCountOrderByAggregateInput No
_max PromotionMaxOrderByAggregateInput No
_min PromotionMinOrderByAggregateInput No


PaymentWhereInput

Name Type Nullable
AND PaymentWhereInput | PaymentWhereInput[] No
OR PaymentWhereInput[] No
NOT PaymentWhereInput | PaymentWhereInput[] No
id StringFilter | String No
amount DecimalFilter | Decimal No
date DateTimeFilter | DateTime No
center StringNullableFilter | String | Null Yes
packageId StringFilter | String No
paymentMethod StringFilter | String No
cashierId StringFilter | String No
revoked BoolNullableFilter | Boolean | Null Yes
createAt DateTimeFilter | DateTime No
package PackageRelationFilter | PackageWhereInput No
cashier UserRelationFilter | UserWhereInput No

PaymentOrderByWithRelationInput

Name Type Nullable
id SortOrder No
amount SortOrder No
date SortOrder No
center SortOrder | SortOrderInput No
packageId SortOrder No
paymentMethod SortOrder No
cashierId SortOrder No
revoked SortOrder | SortOrderInput No
createAt SortOrder No
package PackageOrderByWithRelationInput No
cashier UserOrderByWithRelationInput No

PaymentWhereUniqueInput

Name Type Nullable
id String No
AND PaymentWhereInput | PaymentWhereInput[] No
OR PaymentWhereInput[] No
NOT PaymentWhereInput | PaymentWhereInput[] No
amount DecimalFilter | Decimal No
date DateTimeFilter | DateTime No
center StringNullableFilter | String | Null Yes
packageId StringFilter | String No
paymentMethod StringFilter | String No
cashierId StringFilter | String No
revoked BoolNullableFilter | Boolean | Null Yes
createAt DateTimeFilter | DateTime No
package PackageRelationFilter | PackageWhereInput No
cashier UserRelationFilter | UserWhereInput No

PaymentOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
amount SortOrder No
date SortOrder No
center SortOrder | SortOrderInput No
packageId SortOrder No
paymentMethod SortOrder No
cashierId SortOrder No
revoked SortOrder | SortOrderInput No
createAt SortOrder No
_count PaymentCountOrderByAggregateInput No
_avg PaymentAvgOrderByAggregateInput No
_max PaymentMaxOrderByAggregateInput No
_min PaymentMinOrderByAggregateInput No
_sum PaymentSumOrderByAggregateInput No


CategoryWhereInput

Name Type Nullable
AND CategoryWhereInput | CategoryWhereInput[] No
OR CategoryWhereInput[] No
NOT CategoryWhereInput | CategoryWhereInput[] No
id StringFilter | String No
name StringFilter | String No
description StringNullableFilter | String | Null Yes
icon StringNullableFilter | String | Null Yes
createdBy StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
industries IndustryListRelationFilter No
brandTemplate BrandTemplateListRelationFilter No

CategoryOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder | SortOrderInput No
icon SortOrder | SortOrderInput No
createdBy SortOrder | SortOrderInput No
createdAt SortOrder No
industries IndustryOrderByRelationAggregateInput No
brandTemplate BrandTemplateOrderByRelationAggregateInput No

CategoryWhereUniqueInput

Name Type Nullable
id String No
name String No
AND CategoryWhereInput | CategoryWhereInput[] No
OR CategoryWhereInput[] No
NOT CategoryWhereInput | CategoryWhereInput[] No
description StringNullableFilter | String | Null Yes
icon StringNullableFilter | String | Null Yes
createdBy StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
industries IndustryListRelationFilter No
brandTemplate BrandTemplateListRelationFilter No

CategoryOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder | SortOrderInput No
icon SortOrder | SortOrderInput No
createdBy SortOrder | SortOrderInput No
createdAt SortOrder No
_count CategoryCountOrderByAggregateInput No
_max CategoryMaxOrderByAggregateInput No
_min CategoryMinOrderByAggregateInput No


ImageWhereInput

Name Type Nullable
AND ImageWhereInput | ImageWhereInput[] No
OR ImageWhereInput[] No
NOT ImageWhereInput | ImageWhereInput[] No
id StringFilter | String No
url StringFilter | String No
incomplete BoolNullableFilter | Boolean | Null Yes
incompleteMessage StringNullableFilter | String | Null Yes
isTransparent BoolNullableFilter | Boolean | Null Yes
side EnumImageSideFilter | ImageSide No
brandTemplate BrandTemplateListRelationFilter No

ImageOrderByWithRelationInput

Name Type Nullable
id SortOrder No
url SortOrder No
incomplete SortOrder | SortOrderInput No
incompleteMessage SortOrder | SortOrderInput No
isTransparent SortOrder | SortOrderInput No
side SortOrder No
brandTemplate BrandTemplateOrderByRelationAggregateInput No

ImageWhereUniqueInput

Name Type Nullable
id String No
url String No
AND ImageWhereInput | ImageWhereInput[] No
OR ImageWhereInput[] No
NOT ImageWhereInput | ImageWhereInput[] No
incomplete BoolNullableFilter | Boolean | Null Yes
incompleteMessage StringNullableFilter | String | Null Yes
isTransparent BoolNullableFilter | Boolean | Null Yes
side EnumImageSideFilter | ImageSide No
brandTemplate BrandTemplateListRelationFilter No

ImageOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
url SortOrder No
incomplete SortOrder | SortOrderInput No
incompleteMessage SortOrder | SortOrderInput No
isTransparent SortOrder | SortOrderInput No
side SortOrder No
_count ImageCountOrderByAggregateInput No
_max ImageMaxOrderByAggregateInput No
_min ImageMinOrderByAggregateInput No


ClientEditWhereInput

Name Type Nullable
AND ClientEditWhereInput | ClientEditWhereInput[] No
OR ClientEditWhereInput[] No
NOT ClientEditWhereInput | ClientEditWhereInput[] No
id StringFilter | String No
clientId StringNullableFilter | String | Null Yes
action EnumClientEditActionFilter | ClientEditAction No
field StringFilter | String No
newValue StringFilter | String No
oldValue StringFilter | String No
approved BoolNullableFilter | Boolean | Null Yes
approvedTime DateTimeNullableFilter | DateTime | Null Yes
approvedById StringNullableFilter | String | Null Yes
brandTemplateId StringFilter | String No
approvedBy UserNullableRelationFilter | UserWhereInput | Null Yes
brandTemplate BrandTemplateRelationFilter | BrandTemplateWhereInput No

ClientEditOrderByWithRelationInput

Name Type Nullable
id SortOrder No
clientId SortOrder | SortOrderInput No
action SortOrder No
field SortOrder No
newValue SortOrder No
oldValue SortOrder No
approved SortOrder | SortOrderInput No
approvedTime SortOrder | SortOrderInput No
approvedById SortOrder | SortOrderInput No
brandTemplateId SortOrder No
approvedBy UserOrderByWithRelationInput No
brandTemplate BrandTemplateOrderByWithRelationInput No

ClientEditWhereUniqueInput

Name Type Nullable
id String No
AND ClientEditWhereInput | ClientEditWhereInput[] No
OR ClientEditWhereInput[] No
NOT ClientEditWhereInput | ClientEditWhereInput[] No
clientId StringNullableFilter | String | Null Yes
action EnumClientEditActionFilter | ClientEditAction No
field StringFilter | String No
newValue StringFilter | String No
oldValue StringFilter | String No
approved BoolNullableFilter | Boolean | Null Yes
approvedTime DateTimeNullableFilter | DateTime | Null Yes
approvedById StringNullableFilter | String | Null Yes
brandTemplateId StringFilter | String No
approvedBy UserNullableRelationFilter | UserWhereInput | Null Yes
brandTemplate BrandTemplateRelationFilter | BrandTemplateWhereInput No

ClientEditOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
clientId SortOrder | SortOrderInput No
action SortOrder No
field SortOrder No
newValue SortOrder No
oldValue SortOrder No
approved SortOrder | SortOrderInput No
approvedTime SortOrder | SortOrderInput No
approvedById SortOrder | SortOrderInput No
brandTemplateId SortOrder No
_count ClientEditCountOrderByAggregateInput No
_max ClientEditMaxOrderByAggregateInput No
_min ClientEditMinOrderByAggregateInput No

ClientEditScalarWhereWithAggregatesInput

Name Type Nullable
AND ClientEditScalarWhereWithAggregatesInput | ClientEditScalarWhereWithAggregatesInput[] No
OR ClientEditScalarWhereWithAggregatesInput[] No
NOT ClientEditScalarWhereWithAggregatesInput | ClientEditScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
clientId StringNullableWithAggregatesFilter | String | Null Yes
action EnumClientEditActionWithAggregatesFilter | ClientEditAction No
field StringWithAggregatesFilter | String No
newValue StringWithAggregatesFilter | String No
oldValue StringWithAggregatesFilter | String No
approved BoolNullableWithAggregatesFilter | Boolean | Null Yes
approvedTime DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
approvedById StringNullableWithAggregatesFilter | String | Null Yes
brandTemplateId StringWithAggregatesFilter | String No

ClientRatingWhereInput

Name Type Nullable
AND ClientRatingWhereInput | ClientRatingWhereInput[] No
OR ClientRatingWhereInput[] No
NOT ClientRatingWhereInput | ClientRatingWhereInput[] No
id StringFilter | String No
client_id StringFilter | String No
rating IntFilter | Int No
goodImplematation BoolNullableFilter | Boolean | Null Yes
comment StringNullableFilter | String | Null Yes
brandTemplateId StringFilter | String No
brandTemplate BrandTemplateRelationFilter | BrandTemplateWhereInput No

ClientRatingOrderByWithRelationInput

Name Type Nullable
id SortOrder No
client_id SortOrder No
rating SortOrder No
goodImplematation SortOrder | SortOrderInput No
comment SortOrder | SortOrderInput No
brandTemplateId SortOrder No
brandTemplate BrandTemplateOrderByWithRelationInput No

ClientRatingWhereUniqueInput

Name Type Nullable
id String No
AND ClientRatingWhereInput | ClientRatingWhereInput[] No
OR ClientRatingWhereInput[] No
NOT ClientRatingWhereInput | ClientRatingWhereInput[] No
client_id StringFilter | String No
rating IntFilter | Int No
goodImplematation BoolNullableFilter | Boolean | Null Yes
comment StringNullableFilter | String | Null Yes
brandTemplateId StringFilter | String No
brandTemplate BrandTemplateRelationFilter | BrandTemplateWhereInput No

ClientRatingOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
client_id SortOrder No
rating SortOrder No
goodImplematation SortOrder | SortOrderInput No
comment SortOrder | SortOrderInput No
brandTemplateId SortOrder No
_count ClientRatingCountOrderByAggregateInput No
_avg ClientRatingAvgOrderByAggregateInput No
_max ClientRatingMaxOrderByAggregateInput No
_min ClientRatingMinOrderByAggregateInput No
_sum ClientRatingSumOrderByAggregateInput No


TelWhereInput

Name Type Nullable
AND TelWhereInput | TelWhereInput[] No
OR TelWhereInput[] No
NOT TelWhereInput | TelWhereInput[] No
id StringFilter | String No
name StringFilter | String No
number StringFilter | String No
brandTemplateId StringFilter | String No
brandTemplate BrandTemplateRelationFilter | BrandTemplateWhereInput No

TelOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
number SortOrder No
brandTemplateId SortOrder No
brandTemplate BrandTemplateOrderByWithRelationInput No

TelWhereUniqueInput

Name Type Nullable
id String No
AND TelWhereInput | TelWhereInput[] No
OR TelWhereInput[] No
NOT TelWhereInput | TelWhereInput[] No
name StringFilter | String No
number StringFilter | String No
brandTemplateId StringFilter | String No
brandTemplate BrandTemplateRelationFilter | BrandTemplateWhereInput No

TelOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
number SortOrder No
brandTemplateId SortOrder No
_count TelCountOrderByAggregateInput No
_max TelMaxOrderByAggregateInput No
_min TelMinOrderByAggregateInput No


BrandTemplateWhereInput

Name Type Nullable
AND BrandTemplateWhereInput | BrandTemplateWhereInput[] No
OR BrandTemplateWhereInput[] No
NOT BrandTemplateWhereInput | BrandTemplateWhereInput[] No
id StringFilter | String No
name StringFilter | String No
description StringNullableFilter | String | Null Yes
tags StringNullableListFilter No
imageId StringNullableFilter | String | Null Yes
threeDImage StringNullableFilter | String | Null Yes
video StringNullableFilter | String | Null Yes
sizes StringNullableListFilter No
units StringNullableListFilter No
categoryId StringFilter | String No
addon_categories StringNullableListFilter No
varieties StringNullableListFilter No
manufacturer StringFilter | String No
street_address StringNullableFilter | String | Null Yes
city StringNullableFilter | String | Null Yes
countryId StringNullableFilter | String | Null Yes
email StringNullableFilter | String | Null Yes
website StringNullableFilter | String | Null Yes
draftNotes StringNullableFilter | String | Null Yes
draftType StringNullableFilter | String | Null Yes
draftCreatedAt DateTimeFilter | DateTime No
createdById StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
reviewedAt DateTimeNullableFilter | DateTime | Null Yes
reviewNotes StringNullableFilter | String | Null Yes
reviewerId StringNullableFilter | String | Null Yes
inReview BoolNullableFilter | Boolean | Null Yes
isApproved BoolNullableFilter | Boolean | Null Yes
lastModified DateTimeFilter | DateTime No
creatorClientId StringNullableFilter | String | Null Yes
creatorClientProductId StringNullableFilter | String | Null Yes
fromClientCleanedBy StringNullableFilter | String | Null Yes
hasZeroDepositOrder BoolNullableFilter | Boolean | Null Yes
hasTransparencyAll BoolNullableFilter | Boolean | Null Yes
isNotForUnder18 BoolNullableFilter | Boolean | Null Yes
isDirty BoolNullableFilter | Boolean | Null Yes
image ImageNullableRelationFilter | ImageWhereInput | Null Yes
category CategoryRelationFilter | CategoryWhereInput No
country CountryNullableRelationFilter | CountryWhereInput | Null Yes
telNumbers TelListRelationFilter No
createdBy UserNullableRelationFilter | UserWhereInput | Null Yes
reviewer UserNullableRelationFilter | UserWhereInput | Null Yes
client_edits ClientEditListRelationFilter No
implementationRatings ClientRatingListRelationFilter No

BrandTemplateOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder | SortOrderInput No
tags SortOrder No
imageId SortOrder | SortOrderInput No
threeDImage SortOrder | SortOrderInput No
video SortOrder | SortOrderInput No
sizes SortOrder No
units SortOrder No
categoryId SortOrder No
addon_categories SortOrder No
varieties SortOrder No
manufacturer SortOrder No
street_address SortOrder | SortOrderInput No
city SortOrder | SortOrderInput No
countryId SortOrder | SortOrderInput No
email SortOrder | SortOrderInput No
website SortOrder | SortOrderInput No
draftNotes SortOrder | SortOrderInput No
draftType SortOrder | SortOrderInput No
draftCreatedAt SortOrder No
createdById SortOrder | SortOrderInput No
createdAt SortOrder No
reviewedAt SortOrder | SortOrderInput No
reviewNotes SortOrder | SortOrderInput No
reviewerId SortOrder | SortOrderInput No
inReview SortOrder | SortOrderInput No
isApproved SortOrder | SortOrderInput No
lastModified SortOrder No
creatorClientId SortOrder | SortOrderInput No
creatorClientProductId SortOrder | SortOrderInput No
fromClientCleanedBy SortOrder | SortOrderInput No
hasZeroDepositOrder SortOrder | SortOrderInput No
hasTransparencyAll SortOrder | SortOrderInput No
isNotForUnder18 SortOrder | SortOrderInput No
isDirty SortOrder | SortOrderInput No
image ImageOrderByWithRelationInput No
category CategoryOrderByWithRelationInput No
country CountryOrderByWithRelationInput No
telNumbers TelOrderByRelationAggregateInput No
createdBy UserOrderByWithRelationInput No
reviewer UserOrderByWithRelationInput No
client_edits ClientEditOrderByRelationAggregateInput No
implementationRatings ClientRatingOrderByRelationAggregateInput No

BrandTemplateWhereUniqueInput

Name Type Nullable
id String No
name String No
AND BrandTemplateWhereInput | BrandTemplateWhereInput[] No
OR BrandTemplateWhereInput[] No
NOT BrandTemplateWhereInput | BrandTemplateWhereInput[] No
description StringNullableFilter | String | Null Yes
tags StringNullableListFilter No
imageId StringNullableFilter | String | Null Yes
threeDImage StringNullableFilter | String | Null Yes
video StringNullableFilter | String | Null Yes
sizes StringNullableListFilter No
units StringNullableListFilter No
categoryId StringFilter | String No
addon_categories StringNullableListFilter No
varieties StringNullableListFilter No
manufacturer StringFilter | String No
street_address StringNullableFilter | String | Null Yes
city StringNullableFilter | String | Null Yes
countryId StringNullableFilter | String | Null Yes
email StringNullableFilter | String | Null Yes
website StringNullableFilter | String | Null Yes
draftNotes StringNullableFilter | String | Null Yes
draftType StringNullableFilter | String | Null Yes
draftCreatedAt DateTimeFilter | DateTime No
createdById StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
reviewedAt DateTimeNullableFilter | DateTime | Null Yes
reviewNotes StringNullableFilter | String | Null Yes
reviewerId StringNullableFilter | String | Null Yes
inReview BoolNullableFilter | Boolean | Null Yes
isApproved BoolNullableFilter | Boolean | Null Yes
lastModified DateTimeFilter | DateTime No
creatorClientId StringNullableFilter | String | Null Yes
creatorClientProductId StringNullableFilter | String | Null Yes
fromClientCleanedBy StringNullableFilter | String | Null Yes
hasZeroDepositOrder BoolNullableFilter | Boolean | Null Yes
hasTransparencyAll BoolNullableFilter | Boolean | Null Yes
isNotForUnder18 BoolNullableFilter | Boolean | Null Yes
isDirty BoolNullableFilter | Boolean | Null Yes
image ImageNullableRelationFilter | ImageWhereInput | Null Yes
category CategoryRelationFilter | CategoryWhereInput No
country CountryNullableRelationFilter | CountryWhereInput | Null Yes
telNumbers TelListRelationFilter No
createdBy UserNullableRelationFilter | UserWhereInput | Null Yes
reviewer UserNullableRelationFilter | UserWhereInput | Null Yes
client_edits ClientEditListRelationFilter No
implementationRatings ClientRatingListRelationFilter No

BrandTemplateOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder | SortOrderInput No
tags SortOrder No
imageId SortOrder | SortOrderInput No
threeDImage SortOrder | SortOrderInput No
video SortOrder | SortOrderInput No
sizes SortOrder No
units SortOrder No
categoryId SortOrder No
addon_categories SortOrder No
varieties SortOrder No
manufacturer SortOrder No
street_address SortOrder | SortOrderInput No
city SortOrder | SortOrderInput No
countryId SortOrder | SortOrderInput No
email SortOrder | SortOrderInput No
website SortOrder | SortOrderInput No
draftNotes SortOrder | SortOrderInput No
draftType SortOrder | SortOrderInput No
draftCreatedAt SortOrder No
createdById SortOrder | SortOrderInput No
createdAt SortOrder No
reviewedAt SortOrder | SortOrderInput No
reviewNotes SortOrder | SortOrderInput No
reviewerId SortOrder | SortOrderInput No
inReview SortOrder | SortOrderInput No
isApproved SortOrder | SortOrderInput No
lastModified SortOrder No
creatorClientId SortOrder | SortOrderInput No
creatorClientProductId SortOrder | SortOrderInput No
fromClientCleanedBy SortOrder | SortOrderInput No
hasZeroDepositOrder SortOrder | SortOrderInput No
hasTransparencyAll SortOrder | SortOrderInput No
isNotForUnder18 SortOrder | SortOrderInput No
isDirty SortOrder | SortOrderInput No
_count BrandTemplateCountOrderByAggregateInput No
_max BrandTemplateMaxOrderByAggregateInput No
_min BrandTemplateMinOrderByAggregateInput No

BrandTemplateScalarWhereWithAggregatesInput

Name Type Nullable
AND BrandTemplateScalarWhereWithAggregatesInput | BrandTemplateScalarWhereWithAggregatesInput[] No
OR BrandTemplateScalarWhereWithAggregatesInput[] No
NOT BrandTemplateScalarWhereWithAggregatesInput | BrandTemplateScalarWhereWithAggregatesInput[] No
id StringWithAggregatesFilter | String No
name StringWithAggregatesFilter | String No
description StringNullableWithAggregatesFilter | String | Null Yes
tags StringNullableListFilter No
imageId StringNullableWithAggregatesFilter | String | Null Yes
threeDImage StringNullableWithAggregatesFilter | String | Null Yes
video StringNullableWithAggregatesFilter | String | Null Yes
sizes StringNullableListFilter No
units StringNullableListFilter No
categoryId StringWithAggregatesFilter | String No
addon_categories StringNullableListFilter No
varieties StringNullableListFilter No
manufacturer StringWithAggregatesFilter | String No
street_address StringNullableWithAggregatesFilter | String | Null Yes
city StringNullableWithAggregatesFilter | String | Null Yes
countryId StringNullableWithAggregatesFilter | String | Null Yes
email StringNullableWithAggregatesFilter | String | Null Yes
website StringNullableWithAggregatesFilter | String | Null Yes
draftNotes StringNullableWithAggregatesFilter | String | Null Yes
draftType StringNullableWithAggregatesFilter | String | Null Yes
draftCreatedAt DateTimeWithAggregatesFilter | DateTime No
createdById StringNullableWithAggregatesFilter | String | Null Yes
createdAt DateTimeWithAggregatesFilter | DateTime No
reviewedAt DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
reviewNotes StringNullableWithAggregatesFilter | String | Null Yes
reviewerId StringNullableWithAggregatesFilter | String | Null Yes
inReview BoolNullableWithAggregatesFilter | Boolean | Null Yes
isApproved BoolNullableWithAggregatesFilter | Boolean | Null Yes
lastModified DateTimeWithAggregatesFilter | DateTime No
creatorClientId StringNullableWithAggregatesFilter | String | Null Yes
creatorClientProductId StringNullableWithAggregatesFilter | String | Null Yes
fromClientCleanedBy StringNullableWithAggregatesFilter | String | Null Yes
hasZeroDepositOrder BoolNullableWithAggregatesFilter | Boolean | Null Yes
hasTransparencyAll BoolNullableWithAggregatesFilter | Boolean | Null Yes
isNotForUnder18 BoolNullableWithAggregatesFilter | Boolean | Null Yes
isDirty BoolNullableWithAggregatesFilter | Boolean | Null Yes

IndustryCreateInput

Name Type Nullable
id String No
name String No
promotions PromotionCreateNestedManyWithoutIndustriesInput No
categories CategoryCreateNestedManyWithoutIndustriesInput No
features FeatureCreateNestedManyWithoutIndustriesInput No

IndustryUncheckedCreateInput

Name Type Nullable
id String No
name String No
promotions PromotionUncheckedCreateNestedManyWithoutIndustriesInput No
categories CategoryUncheckedCreateNestedManyWithoutIndustriesInput No
features FeatureUncheckedCreateNestedManyWithoutIndustriesInput No



IndustryCreateManyInput

Name Type Nullable
id String No
name String No

IndustryUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

IndustryUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

CountryCreateInput

Name Type Nullable
id String No
name String No
user UserCreateNestedManyWithoutCountryInput No
promotions PromotionCreateNestedManyWithoutCountriesInput No
brandTemplate BrandTemplateCreateNestedManyWithoutCountryInput No
features FeatureCreateNestedManyWithoutCountriesInput No




CountryCreateManyInput

Name Type Nullable
id String No
name String No

CountryUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

CountryUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

RoleCreateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
permissions PermissionsCreateNestedManyWithoutRoleInput No
user UserCreateNestedManyWithoutRoleInput No

RoleUncheckedCreateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
permissions PermissionsUncheckedCreateNestedManyWithoutRoleInput No
user UserUncheckedCreateNestedManyWithoutRoleInput No

RoleUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
permissions PermissionsUpdateManyWithoutRoleNestedInput No
user UserUpdateManyWithoutRoleNestedInput No

RoleUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
permissions PermissionsUncheckedUpdateManyWithoutRoleNestedInput No
user UserUncheckedUpdateManyWithoutRoleNestedInput No

RoleCreateManyInput

Name Type Nullable
id String No
name String No
description String | Null Yes

RoleUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes

RoleUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes

DomainCreateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
permissions PermissionsCreateNestedManyWithoutDomainInput No

DomainUncheckedCreateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
permissions PermissionsUncheckedCreateNestedManyWithoutDomainInput No

DomainUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
permissions PermissionsUpdateManyWithoutDomainNestedInput No

DomainUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
permissions PermissionsUncheckedUpdateManyWithoutDomainNestedInput No

DomainCreateManyInput

Name Type Nullable
id String No
name String No
description String | Null Yes

DomainUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes

DomainUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes

PermissionsCreateInput

Name Type Nullable
id String No
accessLevel PermissionTypes No
domain DomainCreateNestedOneWithoutPermissionsInput No
role RoleCreateNestedOneWithoutPermissionsInput No

PermissionsUncheckedCreateInput

Name Type Nullable
id String No
accessLevel PermissionTypes No
domainId String No
roleId String No


PermissionsUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
accessLevel PermissionTypes | EnumPermissionTypesFieldUpdateOperationsInput No
domainId String | StringFieldUpdateOperationsInput No
roleId String | StringFieldUpdateOperationsInput No

PermissionsCreateManyInput

Name Type Nullable
id String No
accessLevel PermissionTypes No
domainId String No
roleId String No

PermissionsUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
accessLevel PermissionTypes | EnumPermissionTypesFieldUpdateOperationsInput No

PermissionsUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
accessLevel PermissionTypes | EnumPermissionTypesFieldUpdateOperationsInput No
domainId String | StringFieldUpdateOperationsInput No
roleId String | StringFieldUpdateOperationsInput No

UserCreateInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
createdAt DateTime No
role RoleCreateNestedOneWithoutUserInput No
country CountryCreateNestedOneWithoutUserInput No
teams TeamCreateNestedManyWithoutUserInput No
assignedTasks TaskCreateNestedManyWithoutAssigneeInput No
createdTasks TaskCreateNestedManyWithoutCreatedByInput No
promotion PromotionCreateNestedManyWithoutCreatedByInput No
payment PaymentCreateNestedManyWithoutCashierInput No
createdTemplates BrandTemplateCreateNestedManyWithoutCreatedByInput No
reviewedTemplates BrandTemplateCreateNestedManyWithoutReviewerInput No
clientEdits ClientEditCreateNestedManyWithoutApprovedByInput No

UserUncheckedCreateInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
roleId String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
countryId String | Null Yes
createdAt DateTime No
teams TeamUncheckedCreateNestedManyWithoutUserInput No
assignedTasks TaskUncheckedCreateNestedManyWithoutAssigneeInput No
createdTasks TaskUncheckedCreateNestedManyWithoutCreatedByInput No
promotion PromotionUncheckedCreateNestedManyWithoutCreatedByInput No
payment PaymentUncheckedCreateNestedManyWithoutCashierInput No
createdTemplates BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput No
reviewedTemplates BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput No
clientEdits ClientEditUncheckedCreateNestedManyWithoutApprovedByInput No

UserUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
role RoleUpdateOneWithoutUserNestedInput No
country CountryUpdateOneWithoutUserNestedInput No
teams TeamUpdateManyWithoutUserNestedInput No
assignedTasks TaskUpdateManyWithoutAssigneeNestedInput No
createdTasks TaskUpdateManyWithoutCreatedByNestedInput No
promotion PromotionUpdateManyWithoutCreatedByNestedInput No
payment PaymentUpdateManyWithoutCashierNestedInput No
createdTemplates BrandTemplateUpdateManyWithoutCreatedByNestedInput No
reviewedTemplates BrandTemplateUpdateManyWithoutReviewerNestedInput No
clientEdits ClientEditUpdateManyWithoutApprovedByNestedInput No

UserUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
roleId String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
teams TeamUncheckedUpdateManyWithoutUserNestedInput No
assignedTasks TaskUncheckedUpdateManyWithoutAssigneeNestedInput No
createdTasks TaskUncheckedUpdateManyWithoutCreatedByNestedInput No
promotion PromotionUncheckedUpdateManyWithoutCreatedByNestedInput No
payment PaymentUncheckedUpdateManyWithoutCashierNestedInput No
createdTemplates BrandTemplateUncheckedUpdateManyWithoutCreatedByNestedInput No
reviewedTemplates BrandTemplateUncheckedUpdateManyWithoutReviewerNestedInput No
clientEdits ClientEditUncheckedUpdateManyWithoutApprovedByNestedInput No

UserCreateManyInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
roleId String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
countryId String | Null Yes
createdAt DateTime No

UserUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

UserUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
roleId String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

TeamCreateInput

Name Type Nullable
id String No
name String No
createdAt DateTime No
leader String No
user UserCreateNestedOneWithoutTeamsInput No
goals GoalCreateNestedManyWithoutTeamsInput No

TeamUncheckedCreateInput

Name Type Nullable
id String No
name String No
createdAt DateTime No
leader String No
userId String | Null Yes
goals GoalUncheckedCreateNestedManyWithoutTeamsInput No


TeamUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
leader String | StringFieldUpdateOperationsInput No
userId String | NullableStringFieldUpdateOperationsInput | Null Yes
goals GoalUncheckedUpdateManyWithoutTeamsNestedInput No

TeamCreateManyInput

Name Type Nullable
id String No
name String No
createdAt DateTime No
leader String No
userId String | Null Yes

TeamUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
leader String | StringFieldUpdateOperationsInput No

TeamUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
leader String | StringFieldUpdateOperationsInput No
userId String | NullableStringFieldUpdateOperationsInput | Null Yes

GoalCreateInput

Name Type Nullable
id String No
title String No
description String | Null Yes
startDate DateTime | Null Yes
createdAt DateTime No
deadline DateTime | Null Yes
active Boolean | Null Yes
isComplete Boolean | Null Yes
teams TeamCreateNestedManyWithoutGoalsInput No
tasks TaskCreateNestedManyWithoutGoalInput No

GoalUncheckedCreateInput

Name Type Nullable
id String No
title String No
description String | Null Yes
startDate DateTime | Null Yes
createdAt DateTime No
deadline DateTime | Null Yes
active Boolean | Null Yes
isComplete Boolean | Null Yes
teams TeamUncheckedCreateNestedManyWithoutGoalsInput No
tasks TaskUncheckedCreateNestedManyWithoutGoalInput No

GoalUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
deadline DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
active Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isComplete Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
teams TeamUpdateManyWithoutGoalsNestedInput No
tasks TaskUpdateManyWithoutGoalNestedInput No

GoalUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
deadline DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
active Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isComplete Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
teams TeamUncheckedUpdateManyWithoutGoalsNestedInput No
tasks TaskUncheckedUpdateManyWithoutGoalNestedInput No

GoalCreateManyInput

Name Type Nullable
id String No
title String No
description String | Null Yes
startDate DateTime | Null Yes
createdAt DateTime No
deadline DateTime | Null Yes
active Boolean | Null Yes
isComplete Boolean | Null Yes

GoalUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
deadline DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
active Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isComplete Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes

GoalUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
deadline DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
active Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isComplete Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes

TaskCreateInput

Name Type Nullable
id String No
title String No
comments String | Null Yes
createdAt DateTime No
startDate DateTime | Null Yes
dueDate DateTime | Null Yes
priority TaskPriority | Null Yes
stage TaskStage | Null Yes
Goal GoalCreateNestedOneWithoutTasksInput No
assignee UserCreateNestedOneWithoutAssignedTasksInput No
createdBy UserCreateNestedOneWithoutCreatedTasksInput No

TaskUncheckedCreateInput

Name Type Nullable
id String No
title String No
comments String | Null Yes
createdAt DateTime No
startDate DateTime | Null Yes
dueDate DateTime | Null Yes
priority TaskPriority | Null Yes
stage TaskStage | Null Yes
GoalId String | Null Yes
assigneeId String | Null Yes
createdById String | Null Yes


TaskUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
comments String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
dueDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
priority TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null Yes
stage TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null Yes
GoalId String | NullableStringFieldUpdateOperationsInput | Null Yes
assigneeId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes

TaskCreateManyInput

Name Type Nullable
id String No
title String No
comments String | Null Yes
createdAt DateTime No
startDate DateTime | Null Yes
dueDate DateTime | Null Yes
priority TaskPriority | Null Yes
stage TaskStage | Null Yes
GoalId String | Null Yes
assigneeId String | Null Yes
createdById String | Null Yes

TaskUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
comments String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
dueDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
priority TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null Yes
stage TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null Yes

TaskUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
comments String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
dueDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
priority TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null Yes
stage TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null Yes
GoalId String | NullableStringFieldUpdateOperationsInput | Null Yes
assigneeId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes

FeatureCreateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
type FeatureType No
industries IndustryCreateNestedManyWithoutFeaturesInput No
countries CountryCreateNestedManyWithoutFeaturesInput No
promotions PromotionCreateNestedManyWithoutFeaturesInput No
packages PackageCreateNestedManyWithoutFeaturesInput No

FeatureUncheckedCreateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
type FeatureType No
industries IndustryUncheckedCreateNestedManyWithoutFeaturesInput No
countries CountryUncheckedCreateNestedManyWithoutFeaturesInput No
promotions PromotionUncheckedCreateNestedManyWithoutFeaturesInput No
packages PackageUncheckedCreateNestedManyWithoutFeaturesInput No



FeatureCreateManyInput

Name Type Nullable
id String No
name String No
description String | Null Yes
type FeatureType No

FeatureUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
type FeatureType | EnumFeatureTypeFieldUpdateOperationsInput No

FeatureUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
type FeatureType | EnumFeatureTypeFieldUpdateOperationsInput No

PackageCreateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
color String | Null Yes
level Int No
prices PackagePriceCreateNestedManyWithoutPackageInput No
features FeatureCreateNestedManyWithoutPackagesInput No
promotions PromotionCreateNestedManyWithoutPackagesInput No
payment PaymentCreateNestedManyWithoutPackageInput No

PackageUncheckedCreateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
color String | Null Yes
level Int No
prices PackagePriceUncheckedCreateNestedManyWithoutPackageInput No
features FeatureUncheckedCreateNestedManyWithoutPackagesInput No
promotions PromotionUncheckedCreateNestedManyWithoutPackagesInput No
payment PaymentUncheckedCreateNestedManyWithoutPackageInput No



PackageCreateManyInput

Name Type Nullable
id String No
name String No
description String | Null Yes
color String | Null Yes
level Int No

PackageUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
level Int | IntFieldUpdateOperationsInput No

PackageUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
level Int | IntFieldUpdateOperationsInput No

PackagePriceCreateInput

Name Type Nullable
id String No
duration Float No
amount Float No
extentionTime Float | Null Yes
Package PackageCreateNestedOneWithoutPricesInput No

PackagePriceUncheckedCreateInput

Name Type Nullable
id String No
duration Float No
amount Float No
extentionTime Float | Null Yes
packageId String | Null Yes

PackagePriceUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
duration Float | FloatFieldUpdateOperationsInput No
amount Float | FloatFieldUpdateOperationsInput No
extentionTime Float | NullableFloatFieldUpdateOperationsInput | Null Yes
Package PackageUpdateOneWithoutPricesNestedInput No

PackagePriceUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
duration Float | FloatFieldUpdateOperationsInput No
amount Float | FloatFieldUpdateOperationsInput No
extentionTime Float | NullableFloatFieldUpdateOperationsInput | Null Yes
packageId String | NullableStringFieldUpdateOperationsInput | Null Yes

PackagePriceCreateManyInput

Name Type Nullable
id String No
duration Float No
amount Float No
extentionTime Float | Null Yes
packageId String | Null Yes

PackagePriceUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
duration Float | FloatFieldUpdateOperationsInput No
amount Float | FloatFieldUpdateOperationsInput No
extentionTime Float | NullableFloatFieldUpdateOperationsInput | Null Yes

PackagePriceUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
duration Float | FloatFieldUpdateOperationsInput No
amount Float | FloatFieldUpdateOperationsInput No
extentionTime Float | NullableFloatFieldUpdateOperationsInput | Null Yes
packageId String | NullableStringFieldUpdateOperationsInput | Null Yes

PromotionCreateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
startDate DateTime No
endDate DateTime No
createdAt DateTime No
features FeatureCreateNestedManyWithoutPromotionsInput No
industries IndustryCreateNestedManyWithoutPromotionsInput No
countries CountryCreateNestedManyWithoutPromotionsInput No
packages PackageCreateNestedManyWithoutPromotionsInput No
createdBy UserCreateNestedOneWithoutPromotionInput No

PromotionUncheckedCreateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
startDate DateTime No
endDate DateTime No
createdById String | Null Yes
createdAt DateTime No
features FeatureUncheckedCreateNestedManyWithoutPromotionsInput No
industries IndustryUncheckedCreateNestedManyWithoutPromotionsInput No
countries CountryUncheckedCreateNestedManyWithoutPromotionsInput No
packages PackageUncheckedCreateNestedManyWithoutPromotionsInput No



PromotionCreateManyInput

Name Type Nullable
id String No
name String No
description String | Null Yes
startDate DateTime No
endDate DateTime No
createdById String | Null Yes
createdAt DateTime No

PromotionUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | DateTimeFieldUpdateOperationsInput No
endDate DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

PromotionUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | DateTimeFieldUpdateOperationsInput No
endDate DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

PaymentCreateInput

Name Type Nullable
id String No
amount Decimal No
date DateTime No
center String | Null Yes
paymentMethod String No
revoked Boolean | Null Yes
createAt DateTime No
package PackageCreateNestedOneWithoutPaymentInput No
cashier UserCreateNestedOneWithoutPaymentInput No

PaymentUncheckedCreateInput

Name Type Nullable
id String No
amount Decimal No
date DateTime No
center String | Null Yes
packageId String No
paymentMethod String No
cashierId String No
revoked Boolean | Null Yes
createAt DateTime No


PaymentUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
center String | NullableStringFieldUpdateOperationsInput | Null Yes
packageId String | StringFieldUpdateOperationsInput No
paymentMethod String | StringFieldUpdateOperationsInput No
cashierId String | StringFieldUpdateOperationsInput No
revoked Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No

PaymentCreateManyInput

Name Type Nullable
id String No
amount Decimal No
date DateTime No
center String | Null Yes
packageId String No
paymentMethod String No
cashierId String No
revoked Boolean | Null Yes
createAt DateTime No

PaymentUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
center String | NullableStringFieldUpdateOperationsInput | Null Yes
paymentMethod String | StringFieldUpdateOperationsInput No
revoked Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No

PaymentUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
center String | NullableStringFieldUpdateOperationsInput | Null Yes
packageId String | StringFieldUpdateOperationsInput No
paymentMethod String | StringFieldUpdateOperationsInput No
cashierId String | StringFieldUpdateOperationsInput No
revoked Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No

CategoryCreateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
icon String | Null Yes
createdBy String | Null Yes
createdAt DateTime No
industries IndustryCreateNestedManyWithoutCategoriesInput No
brandTemplate BrandTemplateCreateNestedManyWithoutCategoryInput No

CategoryUncheckedCreateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
icon String | Null Yes
createdBy String | Null Yes
createdAt DateTime No
industries IndustryUncheckedCreateNestedManyWithoutCategoriesInput No
brandTemplate BrandTemplateUncheckedCreateNestedManyWithoutCategoryInput No

CategoryUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
icon String | NullableStringFieldUpdateOperationsInput | Null Yes
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
industries IndustryUpdateManyWithoutCategoriesNestedInput No
brandTemplate BrandTemplateUpdateManyWithoutCategoryNestedInput No

CategoryUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
icon String | NullableStringFieldUpdateOperationsInput | Null Yes
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
industries IndustryUncheckedUpdateManyWithoutCategoriesNestedInput No
brandTemplate BrandTemplateUncheckedUpdateManyWithoutCategoryNestedInput No

CategoryCreateManyInput

Name Type Nullable
id String No
name String No
description String | Null Yes
icon String | Null Yes
createdBy String | Null Yes
createdAt DateTime No

CategoryUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
icon String | NullableStringFieldUpdateOperationsInput | Null Yes
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

CategoryUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
icon String | NullableStringFieldUpdateOperationsInput | Null Yes
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

ImageCreateInput

Name Type Nullable
id String No
url String No
incomplete Boolean | Null Yes
incompleteMessage String | Null Yes
isTransparent Boolean | Null Yes
side ImageSide No
brandTemplate BrandTemplateCreateNestedManyWithoutImageInput No

ImageUncheckedCreateInput

Name Type Nullable
id String No
url String No
incomplete Boolean | Null Yes
incompleteMessage String | Null Yes
isTransparent Boolean | Null Yes
side ImageSide No
brandTemplate BrandTemplateUncheckedCreateNestedManyWithoutImageInput No

ImageUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
incomplete Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
incompleteMessage String | NullableStringFieldUpdateOperationsInput | Null Yes
isTransparent Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
side ImageSide | EnumImageSideFieldUpdateOperationsInput No
brandTemplate BrandTemplateUpdateManyWithoutImageNestedInput No

ImageUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
incomplete Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
incompleteMessage String | NullableStringFieldUpdateOperationsInput | Null Yes
isTransparent Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
side ImageSide | EnumImageSideFieldUpdateOperationsInput No
brandTemplate BrandTemplateUncheckedUpdateManyWithoutImageNestedInput No

ImageCreateManyInput

Name Type Nullable
id String No
url String No
incomplete Boolean | Null Yes
incompleteMessage String | Null Yes
isTransparent Boolean | Null Yes
side ImageSide No

ImageUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
incomplete Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
incompleteMessage String | NullableStringFieldUpdateOperationsInput | Null Yes
isTransparent Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
side ImageSide | EnumImageSideFieldUpdateOperationsInput No

ImageUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
incomplete Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
incompleteMessage String | NullableStringFieldUpdateOperationsInput | Null Yes
isTransparent Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
side ImageSide | EnumImageSideFieldUpdateOperationsInput No

ClientEditCreateInput

Name Type Nullable
id String No
clientId String | Null Yes
action ClientEditAction No
field String No
newValue String No
oldValue String No
approved Boolean | Null Yes
approvedTime DateTime | Null Yes
approvedBy UserCreateNestedOneWithoutClientEditsInput No
brandTemplate BrandTemplateCreateNestedOneWithoutClient_editsInput No

ClientEditUncheckedCreateInput

Name Type Nullable
id String No
clientId String | Null Yes
action ClientEditAction No
field String No
newValue String No
oldValue String No
approved Boolean | Null Yes
approvedTime DateTime | Null Yes
approvedById String | Null Yes
brandTemplateId String No


ClientEditUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
clientId String | NullableStringFieldUpdateOperationsInput | Null Yes
action ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput No
field String | StringFieldUpdateOperationsInput No
newValue String | StringFieldUpdateOperationsInput No
oldValue String | StringFieldUpdateOperationsInput No
approved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
approvedTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
approvedById String | NullableStringFieldUpdateOperationsInput | Null Yes
brandTemplateId String | StringFieldUpdateOperationsInput No

ClientEditCreateManyInput

Name Type Nullable
id String No
clientId String | Null Yes
action ClientEditAction No
field String No
newValue String No
oldValue String No
approved Boolean | Null Yes
approvedTime DateTime | Null Yes
approvedById String | Null Yes
brandTemplateId String No

ClientEditUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
clientId String | NullableStringFieldUpdateOperationsInput | Null Yes
action ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput No
field String | StringFieldUpdateOperationsInput No
newValue String | StringFieldUpdateOperationsInput No
oldValue String | StringFieldUpdateOperationsInput No
approved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
approvedTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

ClientEditUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
clientId String | NullableStringFieldUpdateOperationsInput | Null Yes
action ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput No
field String | StringFieldUpdateOperationsInput No
newValue String | StringFieldUpdateOperationsInput No
oldValue String | StringFieldUpdateOperationsInput No
approved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
approvedTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
approvedById String | NullableStringFieldUpdateOperationsInput | Null Yes
brandTemplateId String | StringFieldUpdateOperationsInput No

ClientRatingCreateInput

Name Type Nullable
id String No
client_id String No
rating Int No
goodImplematation Boolean | Null Yes
comment String | Null Yes
brandTemplate BrandTemplateCreateNestedOneWithoutImplementationRatingsInput No

ClientRatingUncheckedCreateInput

Name Type Nullable
id String No
client_id String No
rating Int No
goodImplematation Boolean | Null Yes
comment String | Null Yes
brandTemplateId String No

ClientRatingUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
client_id String | StringFieldUpdateOperationsInput No
rating Int | IntFieldUpdateOperationsInput No
goodImplematation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
brandTemplate BrandTemplateUpdateOneRequiredWithoutImplementationRatingsNestedInput No

ClientRatingUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
client_id String | StringFieldUpdateOperationsInput No
rating Int | IntFieldUpdateOperationsInput No
goodImplematation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
brandTemplateId String | StringFieldUpdateOperationsInput No

ClientRatingCreateManyInput

Name Type Nullable
id String No
client_id String No
rating Int No
goodImplematation Boolean | Null Yes
comment String | Null Yes
brandTemplateId String No

ClientRatingUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
client_id String | StringFieldUpdateOperationsInput No
rating Int | IntFieldUpdateOperationsInput No
goodImplematation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
comment String | NullableStringFieldUpdateOperationsInput | Null Yes

ClientRatingUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
client_id String | StringFieldUpdateOperationsInput No
rating Int | IntFieldUpdateOperationsInput No
goodImplematation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
comment String | NullableStringFieldUpdateOperationsInput | Null Yes
brandTemplateId String | StringFieldUpdateOperationsInput No

TelCreateInput

Name Type Nullable
id String No
name String No
number String No
brandTemplate BrandTemplateCreateNestedOneWithoutTelNumbersInput No

TelUncheckedCreateInput

Name Type Nullable
id String No
name String No
number String No
brandTemplateId String No

TelUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
number String | StringFieldUpdateOperationsInput No
brandTemplate BrandTemplateUpdateOneRequiredWithoutTelNumbersNestedInput No

TelUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
number String | StringFieldUpdateOperationsInput No
brandTemplateId String | StringFieldUpdateOperationsInput No

TelCreateManyInput

Name Type Nullable
id String No
name String No
number String No
brandTemplateId String No

TelUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
number String | StringFieldUpdateOperationsInput No

TelUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
number String | StringFieldUpdateOperationsInput No
brandTemplateId String | StringFieldUpdateOperationsInput No

BrandTemplateCreateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes
image ImageCreateNestedOneWithoutBrandTemplateInput No
category CategoryCreateNestedOneWithoutBrandTemplateInput No
country CountryCreateNestedOneWithoutBrandTemplateInput No
telNumbers TelCreateNestedManyWithoutBrandTemplateInput No
createdBy UserCreateNestedOneWithoutCreatedTemplatesInput No
reviewer UserCreateNestedOneWithoutReviewedTemplatesInput No
client_edits ClientEditCreateNestedManyWithoutBrandTemplateInput No
implementationRatings ClientRatingCreateNestedManyWithoutBrandTemplateInput No

BrandTemplateUncheckedCreateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
imageId String | Null Yes
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
categoryId String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
countryId String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdById String | Null Yes
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
reviewerId String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes
telNumbers TelUncheckedCreateNestedManyWithoutBrandTemplateInput No
client_edits ClientEditUncheckedCreateNestedManyWithoutBrandTemplateInput No
implementationRatings ClientRatingUncheckedCreateNestedManyWithoutBrandTemplateInput No

BrandTemplateUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
image ImageUpdateOneWithoutBrandTemplateNestedInput No
category CategoryUpdateOneRequiredWithoutBrandTemplateNestedInput No
country CountryUpdateOneWithoutBrandTemplateNestedInput No
telNumbers TelUpdateManyWithoutBrandTemplateNestedInput No
createdBy UserUpdateOneWithoutCreatedTemplatesNestedInput No
reviewer UserUpdateOneWithoutReviewedTemplatesNestedInput No
client_edits ClientEditUpdateManyWithoutBrandTemplateNestedInput No
implementationRatings ClientRatingUpdateManyWithoutBrandTemplateNestedInput No

BrandTemplateUncheckedUpdateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
categoryId String | StringFieldUpdateOperationsInput No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewerId String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
telNumbers TelUncheckedUpdateManyWithoutBrandTemplateNestedInput No
client_edits ClientEditUncheckedUpdateManyWithoutBrandTemplateNestedInput No
implementationRatings ClientRatingUncheckedUpdateManyWithoutBrandTemplateNestedInput No

BrandTemplateCreateManyInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
imageId String | Null Yes
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
categoryId String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
countryId String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdById String | Null Yes
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
reviewerId String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes

BrandTemplateUpdateManyMutationInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes

BrandTemplateUncheckedUpdateManyInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
categoryId String | StringFieldUpdateOperationsInput No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewerId String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes

StringFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringFilter No

PromotionListRelationFilter

Name Type Nullable
every PromotionWhereInput No
some PromotionWhereInput No
none PromotionWhereInput No

CategoryListRelationFilter

Name Type Nullable
every CategoryWhereInput No
some CategoryWhereInput No
none CategoryWhereInput No

FeatureListRelationFilter

Name Type Nullable
every FeatureWhereInput No
some FeatureWhereInput No
none FeatureWhereInput No

PromotionOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

CategoryOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

FeatureOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

IndustryCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No

IndustryMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No

IndustryMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No

StringWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

UserListRelationFilter

Name Type Nullable
every UserWhereInput No
some UserWhereInput No
none UserWhereInput No

BrandTemplateListRelationFilter

Name Type Nullable
every BrandTemplateWhereInput No
some BrandTemplateWhereInput No
none BrandTemplateWhereInput No

UserOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

BrandTemplateOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

CountryCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No

CountryMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No

CountryMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No

StringNullableFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringNullableFilter | Null Yes

PermissionsListRelationFilter

Name Type Nullable
every PermissionsWhereInput No
some PermissionsWhereInput No
none PermissionsWhereInput No

SortOrderInput

Name Type Nullable
sort SortOrder No
nulls NullsOrder No

PermissionsOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

RoleCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No

RoleMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No

RoleMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No

StringNullableWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
mode QueryMode No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

DomainCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No

DomainMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No

DomainMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No


DomainRelationFilter

Name Type Nullable
is DomainWhereInput No
isNot DomainWhereInput No

RoleRelationFilter

Name Type Nullable
is RoleWhereInput No
isNot RoleWhereInput No

PermissionsCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
accessLevel SortOrder No
domainId SortOrder No
roleId SortOrder No

PermissionsMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
accessLevel SortOrder No
domainId SortOrder No
roleId SortOrder No

PermissionsMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
accessLevel SortOrder No
domainId SortOrder No
roleId SortOrder No


DateTimeNullableFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableFilter | Null Yes

EnumUserStatusNullableFilter

Name Type Nullable
equals UserStatus | EnumUserStatusFieldRefInput | Null Yes
in UserStatus[] | ListEnumUserStatusFieldRefInput | Null Yes
notIn UserStatus[] | ListEnumUserStatusFieldRefInput | Null Yes
not UserStatus | NestedEnumUserStatusNullableFilter | Null Yes

IntNullableFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableFilter | Null Yes

DateTimeFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeFilter No

RoleNullableRelationFilter

Name Type Nullable
is RoleWhereInput | Null Yes
isNot RoleWhereInput | Null Yes

CountryNullableRelationFilter

Name Type Nullable
is CountryWhereInput | Null Yes
isNot CountryWhereInput | Null Yes

TeamListRelationFilter

Name Type Nullable
every TeamWhereInput No
some TeamWhereInput No
none TeamWhereInput No

TaskListRelationFilter

Name Type Nullable
every TaskWhereInput No
some TaskWhereInput No
none TaskWhereInput No

PaymentListRelationFilter

Name Type Nullable
every PaymentWhereInput No
some PaymentWhereInput No
none PaymentWhereInput No

ClientEditListRelationFilter

Name Type Nullable
every ClientEditWhereInput No
some ClientEditWhereInput No
none ClientEditWhereInput No

TeamOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

TaskOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PaymentOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ClientEditOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
email SortOrder No
password SortOrder No
token SortOrder No
fcm_token SortOrder No
avatar SortOrder No
roleId SortOrder No
suspendendAt SortOrder No
status SortOrder No
streetAddress SortOrder No
city SortOrder No
cell SortOrder No
tell SortOrder No
verificationCode SortOrder No
countryId SortOrder No
createdAt SortOrder No

UserAvgOrderByAggregateInput

Name Type Nullable
verificationCode SortOrder No

UserMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
email SortOrder No
password SortOrder No
token SortOrder No
fcm_token SortOrder No
avatar SortOrder No
roleId SortOrder No
suspendendAt SortOrder No
status SortOrder No
streetAddress SortOrder No
city SortOrder No
cell SortOrder No
tell SortOrder No
verificationCode SortOrder No
countryId SortOrder No
createdAt SortOrder No

UserMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
email SortOrder No
password SortOrder No
token SortOrder No
fcm_token SortOrder No
avatar SortOrder No
roleId SortOrder No
suspendendAt SortOrder No
status SortOrder No
streetAddress SortOrder No
city SortOrder No
cell SortOrder No
tell SortOrder No
verificationCode SortOrder No
countryId SortOrder No
createdAt SortOrder No

UserSumOrderByAggregateInput

Name Type Nullable
verificationCode SortOrder No

DateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No


IntNullableWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

DateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

UserNullableRelationFilter

Name Type Nullable
is UserWhereInput | Null Yes
isNot UserWhereInput | Null Yes

GoalListRelationFilter

Name Type Nullable
every GoalWhereInput No
some GoalWhereInput No
none GoalWhereInput No

GoalOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

TeamCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
createdAt SortOrder No
leader SortOrder No
userId SortOrder No

TeamMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
createdAt SortOrder No
leader SortOrder No
userId SortOrder No

TeamMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
createdAt SortOrder No
leader SortOrder No
userId SortOrder No

BoolNullableFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput | Null Yes
not Boolean | NestedBoolNullableFilter | Null Yes

GoalCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
title SortOrder No
description SortOrder No
startDate SortOrder No
createdAt SortOrder No
deadline SortOrder No
active SortOrder No
isComplete SortOrder No

GoalMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
title SortOrder No
description SortOrder No
startDate SortOrder No
createdAt SortOrder No
deadline SortOrder No
active SortOrder No
isComplete SortOrder No

GoalMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
title SortOrder No
description SortOrder No
startDate SortOrder No
createdAt SortOrder No
deadline SortOrder No
active SortOrder No
isComplete SortOrder No

BoolNullableWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput | Null Yes
not Boolean | NestedBoolNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedBoolNullableFilter No
_max NestedBoolNullableFilter No

EnumTaskPriorityNullableFilter

Name Type Nullable
equals TaskPriority | EnumTaskPriorityFieldRefInput | Null Yes
in TaskPriority[] | ListEnumTaskPriorityFieldRefInput | Null Yes
notIn TaskPriority[] | ListEnumTaskPriorityFieldRefInput | Null Yes
not TaskPriority | NestedEnumTaskPriorityNullableFilter | Null Yes

EnumTaskStageNullableFilter

Name Type Nullable
equals TaskStage | EnumTaskStageFieldRefInput | Null Yes
in TaskStage[] | ListEnumTaskStageFieldRefInput | Null Yes
notIn TaskStage[] | ListEnumTaskStageFieldRefInput | Null Yes
not TaskStage | NestedEnumTaskStageNullableFilter | Null Yes

GoalNullableRelationFilter

Name Type Nullable
is GoalWhereInput | Null Yes
isNot GoalWhereInput | Null Yes

TaskCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
title SortOrder No
comments SortOrder No
createdAt SortOrder No
startDate SortOrder No
dueDate SortOrder No
priority SortOrder No
stage SortOrder No
GoalId SortOrder No
assigneeId SortOrder No
createdById SortOrder No

TaskMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
title SortOrder No
comments SortOrder No
createdAt SortOrder No
startDate SortOrder No
dueDate SortOrder No
priority SortOrder No
stage SortOrder No
GoalId SortOrder No
assigneeId SortOrder No
createdById SortOrder No

TaskMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
title SortOrder No
comments SortOrder No
createdAt SortOrder No
startDate SortOrder No
dueDate SortOrder No
priority SortOrder No
stage SortOrder No
GoalId SortOrder No
assigneeId SortOrder No
createdById SortOrder No




IndustryListRelationFilter

Name Type Nullable
every IndustryWhereInput No
some IndustryWhereInput No
none IndustryWhereInput No

CountryListRelationFilter

Name Type Nullable
every CountryWhereInput No
some CountryWhereInput No
none CountryWhereInput No

PackageListRelationFilter

Name Type Nullable
every PackageWhereInput No
some PackageWhereInput No
none PackageWhereInput No

IndustryOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

CountryOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PackageOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

FeatureCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
type SortOrder No

FeatureMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
type SortOrder No

FeatureMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
type SortOrder No


IntFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntFilter No

PackagePriceListRelationFilter

Name Type Nullable
every PackagePriceWhereInput No
some PackagePriceWhereInput No
none PackagePriceWhereInput No

PackagePriceOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

PackageCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
color SortOrder No
level SortOrder No

PackageAvgOrderByAggregateInput

Name Type Nullable
level SortOrder No

PackageMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
color SortOrder No
level SortOrder No

PackageMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
color SortOrder No
level SortOrder No

PackageSumOrderByAggregateInput

Name Type Nullable
level SortOrder No

IntWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

FloatFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float | ListFloatFieldRefInput No
notIn Float | ListFloatFieldRefInput No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatFilter No

FloatNullableFilter

Name Type Nullable
equals Float | FloatFieldRefInput | Null Yes
in Float | ListFloatFieldRefInput | Null Yes
notIn Float | ListFloatFieldRefInput | Null Yes
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatNullableFilter | Null Yes

PackageNullableRelationFilter

Name Type Nullable
is PackageWhereInput | Null Yes
isNot PackageWhereInput | Null Yes

PackagePriceCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
duration SortOrder No
amount SortOrder No
extentionTime SortOrder No
packageId SortOrder No

PackagePriceAvgOrderByAggregateInput

Name Type Nullable
duration SortOrder No
amount SortOrder No
extentionTime SortOrder No

PackagePriceMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
duration SortOrder No
amount SortOrder No
extentionTime SortOrder No
packageId SortOrder No

PackagePriceMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
duration SortOrder No
amount SortOrder No
extentionTime SortOrder No
packageId SortOrder No

PackagePriceSumOrderByAggregateInput

Name Type Nullable
duration SortOrder No
amount SortOrder No
extentionTime SortOrder No

FloatWithAggregatesFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float | ListFloatFieldRefInput No
notIn Float | ListFloatFieldRefInput No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedFloatFilter No
_min NestedFloatFilter No
_max NestedFloatFilter No

FloatNullableWithAggregatesFilter

Name Type Nullable
equals Float | FloatFieldRefInput | Null Yes
in Float | ListFloatFieldRefInput | Null Yes
notIn Float | ListFloatFieldRefInput | Null Yes
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedFloatNullableFilter No
_min NestedFloatNullableFilter No
_max NestedFloatNullableFilter No

PromotionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
startDate SortOrder No
endDate SortOrder No
createdById SortOrder No
createdAt SortOrder No

PromotionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
startDate SortOrder No
endDate SortOrder No
createdById SortOrder No
createdAt SortOrder No

PromotionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
startDate SortOrder No
endDate SortOrder No
createdById SortOrder No
createdAt SortOrder No


PackageRelationFilter

Name Type Nullable
is PackageWhereInput No
isNot PackageWhereInput No

UserRelationFilter

Name Type Nullable
is UserWhereInput No
isNot UserWhereInput No

PaymentCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
amount SortOrder No
date SortOrder No
center SortOrder No
packageId SortOrder No
paymentMethod SortOrder No
cashierId SortOrder No
revoked SortOrder No
createAt SortOrder No

PaymentAvgOrderByAggregateInput

Name Type Nullable
amount SortOrder No

PaymentMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
amount SortOrder No
date SortOrder No
center SortOrder No
packageId SortOrder No
paymentMethod SortOrder No
cashierId SortOrder No
revoked SortOrder No
createAt SortOrder No

PaymentMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
amount SortOrder No
date SortOrder No
center SortOrder No
packageId SortOrder No
paymentMethod SortOrder No
cashierId SortOrder No
revoked SortOrder No
createAt SortOrder No

PaymentSumOrderByAggregateInput

Name Type Nullable
amount SortOrder No


CategoryCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
icon SortOrder No
createdBy SortOrder No
createdAt SortOrder No

CategoryMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
icon SortOrder No
createdBy SortOrder No
createdAt SortOrder No

CategoryMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
icon SortOrder No
createdBy SortOrder No
createdAt SortOrder No


ImageCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
url SortOrder No
incomplete SortOrder No
incompleteMessage SortOrder No
isTransparent SortOrder No
side SortOrder No

ImageMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
url SortOrder No
incomplete SortOrder No
incompleteMessage SortOrder No
isTransparent SortOrder No
side SortOrder No

ImageMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
url SortOrder No
incomplete SortOrder No
incompleteMessage SortOrder No
isTransparent SortOrder No
side SortOrder No



BrandTemplateRelationFilter

Name Type Nullable
is BrandTemplateWhereInput No
isNot BrandTemplateWhereInput No

ClientEditCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
clientId SortOrder No
action SortOrder No
field SortOrder No
newValue SortOrder No
oldValue SortOrder No
approved SortOrder No
approvedTime SortOrder No
approvedById SortOrder No
brandTemplateId SortOrder No

ClientEditMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
clientId SortOrder No
action SortOrder No
field SortOrder No
newValue SortOrder No
oldValue SortOrder No
approved SortOrder No
approvedTime SortOrder No
approvedById SortOrder No
brandTemplateId SortOrder No

ClientEditMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
clientId SortOrder No
action SortOrder No
field SortOrder No
newValue SortOrder No
oldValue SortOrder No
approved SortOrder No
approvedTime SortOrder No
approvedById SortOrder No
brandTemplateId SortOrder No


ClientRatingCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
client_id SortOrder No
rating SortOrder No
goodImplematation SortOrder No
comment SortOrder No
brandTemplateId SortOrder No

ClientRatingAvgOrderByAggregateInput

Name Type Nullable
rating SortOrder No

ClientRatingMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
client_id SortOrder No
rating SortOrder No
goodImplematation SortOrder No
comment SortOrder No
brandTemplateId SortOrder No

ClientRatingMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
client_id SortOrder No
rating SortOrder No
goodImplematation SortOrder No
comment SortOrder No
brandTemplateId SortOrder No

ClientRatingSumOrderByAggregateInput

Name Type Nullable
rating SortOrder No

TelCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
number SortOrder No
brandTemplateId SortOrder No

TelMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
number SortOrder No
brandTemplateId SortOrder No

TelMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
number SortOrder No
brandTemplateId SortOrder No

StringNullableListFilter

Name Type Nullable
equals String | ListStringFieldRefInput | Null Yes
has String | StringFieldRefInput | Null Yes
hasEvery String | ListStringFieldRefInput No
hasSome String | ListStringFieldRefInput No
isEmpty Boolean No

ImageNullableRelationFilter

Name Type Nullable
is ImageWhereInput | Null Yes
isNot ImageWhereInput | Null Yes

CategoryRelationFilter

Name Type Nullable
is CategoryWhereInput No
isNot CategoryWhereInput No

TelListRelationFilter

Name Type Nullable
every TelWhereInput No
some TelWhereInput No
none TelWhereInput No

ClientRatingListRelationFilter

Name Type Nullable
every ClientRatingWhereInput No
some ClientRatingWhereInput No
none ClientRatingWhereInput No

TelOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ClientRatingOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

BrandTemplateCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
tags SortOrder No
imageId SortOrder No
threeDImage SortOrder No
video SortOrder No
sizes SortOrder No
units SortOrder No
categoryId SortOrder No
addon_categories SortOrder No
varieties SortOrder No
manufacturer SortOrder No
street_address SortOrder No
city SortOrder No
countryId SortOrder No
email SortOrder No
website SortOrder No
draftNotes SortOrder No
draftType SortOrder No
draftCreatedAt SortOrder No
createdById SortOrder No
createdAt SortOrder No
reviewedAt SortOrder No
reviewNotes SortOrder No
reviewerId SortOrder No
inReview SortOrder No
isApproved SortOrder No
lastModified SortOrder No
creatorClientId SortOrder No
creatorClientProductId SortOrder No
fromClientCleanedBy SortOrder No
hasZeroDepositOrder SortOrder No
hasTransparencyAll SortOrder No
isNotForUnder18 SortOrder No
isDirty SortOrder No

BrandTemplateMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
imageId SortOrder No
threeDImage SortOrder No
video SortOrder No
categoryId SortOrder No
manufacturer SortOrder No
street_address SortOrder No
city SortOrder No
countryId SortOrder No
email SortOrder No
website SortOrder No
draftNotes SortOrder No
draftType SortOrder No
draftCreatedAt SortOrder No
createdById SortOrder No
createdAt SortOrder No
reviewedAt SortOrder No
reviewNotes SortOrder No
reviewerId SortOrder No
inReview SortOrder No
isApproved SortOrder No
lastModified SortOrder No
creatorClientId SortOrder No
creatorClientProductId SortOrder No
fromClientCleanedBy SortOrder No
hasZeroDepositOrder SortOrder No
hasTransparencyAll SortOrder No
isNotForUnder18 SortOrder No
isDirty SortOrder No

BrandTemplateMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
description SortOrder No
imageId SortOrder No
threeDImage SortOrder No
video SortOrder No
categoryId SortOrder No
manufacturer SortOrder No
street_address SortOrder No
city SortOrder No
countryId SortOrder No
email SortOrder No
website SortOrder No
draftNotes SortOrder No
draftType SortOrder No
draftCreatedAt SortOrder No
createdById SortOrder No
createdAt SortOrder No
reviewedAt SortOrder No
reviewNotes SortOrder No
reviewerId SortOrder No
inReview SortOrder No
isApproved SortOrder No
lastModified SortOrder No
creatorClientId SortOrder No
creatorClientProductId SortOrder No
fromClientCleanedBy SortOrder No
hasZeroDepositOrder SortOrder No
hasTransparencyAll SortOrder No
isNotForUnder18 SortOrder No
isDirty SortOrder No







StringFieldUpdateOperationsInput

Name Type Nullable
set String No

PromotionUpdateManyWithoutIndustriesNestedInput

Name Type Nullable
create PromotionCreateWithoutIndustriesInput | PromotionCreateWithoutIndustriesInput[] | PromotionUncheckedCreateWithoutIndustriesInput | PromotionUncheckedCreateWithoutIndustriesInput[] No
connectOrCreate PromotionCreateOrConnectWithoutIndustriesInput | PromotionCreateOrConnectWithoutIndustriesInput[] No
upsert PromotionUpsertWithWhereUniqueWithoutIndustriesInput | PromotionUpsertWithWhereUniqueWithoutIndustriesInput[] No
set PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
disconnect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
delete PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
connect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
update PromotionUpdateWithWhereUniqueWithoutIndustriesInput | PromotionUpdateWithWhereUniqueWithoutIndustriesInput[] No
updateMany PromotionUpdateManyWithWhereWithoutIndustriesInput | PromotionUpdateManyWithWhereWithoutIndustriesInput[] No
deleteMany PromotionScalarWhereInput | PromotionScalarWhereInput[] No

CategoryUpdateManyWithoutIndustriesNestedInput

Name Type Nullable
create CategoryCreateWithoutIndustriesInput | CategoryCreateWithoutIndustriesInput[] | CategoryUncheckedCreateWithoutIndustriesInput | CategoryUncheckedCreateWithoutIndustriesInput[] No
connectOrCreate CategoryCreateOrConnectWithoutIndustriesInput | CategoryCreateOrConnectWithoutIndustriesInput[] No
upsert CategoryUpsertWithWhereUniqueWithoutIndustriesInput | CategoryUpsertWithWhereUniqueWithoutIndustriesInput[] No
set CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
disconnect CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
delete CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
connect CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
update CategoryUpdateWithWhereUniqueWithoutIndustriesInput | CategoryUpdateWithWhereUniqueWithoutIndustriesInput[] No
updateMany CategoryUpdateManyWithWhereWithoutIndustriesInput | CategoryUpdateManyWithWhereWithoutIndustriesInput[] No
deleteMany CategoryScalarWhereInput | CategoryScalarWhereInput[] No

FeatureUpdateManyWithoutIndustriesNestedInput

Name Type Nullable
create FeatureCreateWithoutIndustriesInput | FeatureCreateWithoutIndustriesInput[] | FeatureUncheckedCreateWithoutIndustriesInput | FeatureUncheckedCreateWithoutIndustriesInput[] No
connectOrCreate FeatureCreateOrConnectWithoutIndustriesInput | FeatureCreateOrConnectWithoutIndustriesInput[] No
upsert FeatureUpsertWithWhereUniqueWithoutIndustriesInput | FeatureUpsertWithWhereUniqueWithoutIndustriesInput[] No
set FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
disconnect FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
delete FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
connect FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
update FeatureUpdateWithWhereUniqueWithoutIndustriesInput | FeatureUpdateWithWhereUniqueWithoutIndustriesInput[] No
updateMany FeatureUpdateManyWithWhereWithoutIndustriesInput | FeatureUpdateManyWithWhereWithoutIndustriesInput[] No
deleteMany FeatureScalarWhereInput | FeatureScalarWhereInput[] No

PromotionUncheckedUpdateManyWithoutIndustriesNestedInput

Name Type Nullable
create PromotionCreateWithoutIndustriesInput | PromotionCreateWithoutIndustriesInput[] | PromotionUncheckedCreateWithoutIndustriesInput | PromotionUncheckedCreateWithoutIndustriesInput[] No
connectOrCreate PromotionCreateOrConnectWithoutIndustriesInput | PromotionCreateOrConnectWithoutIndustriesInput[] No
upsert PromotionUpsertWithWhereUniqueWithoutIndustriesInput | PromotionUpsertWithWhereUniqueWithoutIndustriesInput[] No
set PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
disconnect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
delete PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
connect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
update PromotionUpdateWithWhereUniqueWithoutIndustriesInput | PromotionUpdateWithWhereUniqueWithoutIndustriesInput[] No
updateMany PromotionUpdateManyWithWhereWithoutIndustriesInput | PromotionUpdateManyWithWhereWithoutIndustriesInput[] No
deleteMany PromotionScalarWhereInput | PromotionScalarWhereInput[] No

CategoryUncheckedUpdateManyWithoutIndustriesNestedInput

Name Type Nullable
create CategoryCreateWithoutIndustriesInput | CategoryCreateWithoutIndustriesInput[] | CategoryUncheckedCreateWithoutIndustriesInput | CategoryUncheckedCreateWithoutIndustriesInput[] No
connectOrCreate CategoryCreateOrConnectWithoutIndustriesInput | CategoryCreateOrConnectWithoutIndustriesInput[] No
upsert CategoryUpsertWithWhereUniqueWithoutIndustriesInput | CategoryUpsertWithWhereUniqueWithoutIndustriesInput[] No
set CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
disconnect CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
delete CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
connect CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
update CategoryUpdateWithWhereUniqueWithoutIndustriesInput | CategoryUpdateWithWhereUniqueWithoutIndustriesInput[] No
updateMany CategoryUpdateManyWithWhereWithoutIndustriesInput | CategoryUpdateManyWithWhereWithoutIndustriesInput[] No
deleteMany CategoryScalarWhereInput | CategoryScalarWhereInput[] No

FeatureUncheckedUpdateManyWithoutIndustriesNestedInput

Name Type Nullable
create FeatureCreateWithoutIndustriesInput | FeatureCreateWithoutIndustriesInput[] | FeatureUncheckedCreateWithoutIndustriesInput | FeatureUncheckedCreateWithoutIndustriesInput[] No
connectOrCreate FeatureCreateOrConnectWithoutIndustriesInput | FeatureCreateOrConnectWithoutIndustriesInput[] No
upsert FeatureUpsertWithWhereUniqueWithoutIndustriesInput | FeatureUpsertWithWhereUniqueWithoutIndustriesInput[] No
set FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
disconnect FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
delete FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
connect FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
update FeatureUpdateWithWhereUniqueWithoutIndustriesInput | FeatureUpdateWithWhereUniqueWithoutIndustriesInput[] No
updateMany FeatureUpdateManyWithWhereWithoutIndustriesInput | FeatureUpdateManyWithWhereWithoutIndustriesInput[] No
deleteMany FeatureScalarWhereInput | FeatureScalarWhereInput[] No









UserUpdateManyWithoutCountryNestedInput

Name Type Nullable
create UserCreateWithoutCountryInput | UserCreateWithoutCountryInput[] | UserUncheckedCreateWithoutCountryInput | UserUncheckedCreateWithoutCountryInput[] No
connectOrCreate UserCreateOrConnectWithoutCountryInput | UserCreateOrConnectWithoutCountryInput[] No
upsert UserUpsertWithWhereUniqueWithoutCountryInput | UserUpsertWithWhereUniqueWithoutCountryInput[] No
createMany UserCreateManyCountryInputEnvelope No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutCountryInput | UserUpdateWithWhereUniqueWithoutCountryInput[] No
updateMany UserUpdateManyWithWhereWithoutCountryInput | UserUpdateManyWithWhereWithoutCountryInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

PromotionUpdateManyWithoutCountriesNestedInput

Name Type Nullable
create PromotionCreateWithoutCountriesInput | PromotionCreateWithoutCountriesInput[] | PromotionUncheckedCreateWithoutCountriesInput | PromotionUncheckedCreateWithoutCountriesInput[] No
connectOrCreate PromotionCreateOrConnectWithoutCountriesInput | PromotionCreateOrConnectWithoutCountriesInput[] No
upsert PromotionUpsertWithWhereUniqueWithoutCountriesInput | PromotionUpsertWithWhereUniqueWithoutCountriesInput[] No
set PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
disconnect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
delete PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
connect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
update PromotionUpdateWithWhereUniqueWithoutCountriesInput | PromotionUpdateWithWhereUniqueWithoutCountriesInput[] No
updateMany PromotionUpdateManyWithWhereWithoutCountriesInput | PromotionUpdateManyWithWhereWithoutCountriesInput[] No
deleteMany PromotionScalarWhereInput | PromotionScalarWhereInput[] No

BrandTemplateUpdateManyWithoutCountryNestedInput

Name Type Nullable
create BrandTemplateCreateWithoutCountryInput | BrandTemplateCreateWithoutCountryInput[] | BrandTemplateUncheckedCreateWithoutCountryInput | BrandTemplateUncheckedCreateWithoutCountryInput[] No
connectOrCreate BrandTemplateCreateOrConnectWithoutCountryInput | BrandTemplateCreateOrConnectWithoutCountryInput[] No
upsert BrandTemplateUpsertWithWhereUniqueWithoutCountryInput | BrandTemplateUpsertWithWhereUniqueWithoutCountryInput[] No
createMany BrandTemplateCreateManyCountryInputEnvelope No
set BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
disconnect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
delete BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
connect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
update BrandTemplateUpdateWithWhereUniqueWithoutCountryInput | BrandTemplateUpdateWithWhereUniqueWithoutCountryInput[] No
updateMany BrandTemplateUpdateManyWithWhereWithoutCountryInput | BrandTemplateUpdateManyWithWhereWithoutCountryInput[] No
deleteMany BrandTemplateScalarWhereInput | BrandTemplateScalarWhereInput[] No

FeatureUpdateManyWithoutCountriesNestedInput

Name Type Nullable
create FeatureCreateWithoutCountriesInput | FeatureCreateWithoutCountriesInput[] | FeatureUncheckedCreateWithoutCountriesInput | FeatureUncheckedCreateWithoutCountriesInput[] No
connectOrCreate FeatureCreateOrConnectWithoutCountriesInput | FeatureCreateOrConnectWithoutCountriesInput[] No
upsert FeatureUpsertWithWhereUniqueWithoutCountriesInput | FeatureUpsertWithWhereUniqueWithoutCountriesInput[] No
set FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
disconnect FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
delete FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
connect FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
update FeatureUpdateWithWhereUniqueWithoutCountriesInput | FeatureUpdateWithWhereUniqueWithoutCountriesInput[] No
updateMany FeatureUpdateManyWithWhereWithoutCountriesInput | FeatureUpdateManyWithWhereWithoutCountriesInput[] No
deleteMany FeatureScalarWhereInput | FeatureScalarWhereInput[] No

UserUncheckedUpdateManyWithoutCountryNestedInput

Name Type Nullable
create UserCreateWithoutCountryInput | UserCreateWithoutCountryInput[] | UserUncheckedCreateWithoutCountryInput | UserUncheckedCreateWithoutCountryInput[] No
connectOrCreate UserCreateOrConnectWithoutCountryInput | UserCreateOrConnectWithoutCountryInput[] No
upsert UserUpsertWithWhereUniqueWithoutCountryInput | UserUpsertWithWhereUniqueWithoutCountryInput[] No
createMany UserCreateManyCountryInputEnvelope No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutCountryInput | UserUpdateWithWhereUniqueWithoutCountryInput[] No
updateMany UserUpdateManyWithWhereWithoutCountryInput | UserUpdateManyWithWhereWithoutCountryInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

PromotionUncheckedUpdateManyWithoutCountriesNestedInput

Name Type Nullable
create PromotionCreateWithoutCountriesInput | PromotionCreateWithoutCountriesInput[] | PromotionUncheckedCreateWithoutCountriesInput | PromotionUncheckedCreateWithoutCountriesInput[] No
connectOrCreate PromotionCreateOrConnectWithoutCountriesInput | PromotionCreateOrConnectWithoutCountriesInput[] No
upsert PromotionUpsertWithWhereUniqueWithoutCountriesInput | PromotionUpsertWithWhereUniqueWithoutCountriesInput[] No
set PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
disconnect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
delete PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
connect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
update PromotionUpdateWithWhereUniqueWithoutCountriesInput | PromotionUpdateWithWhereUniqueWithoutCountriesInput[] No
updateMany PromotionUpdateManyWithWhereWithoutCountriesInput | PromotionUpdateManyWithWhereWithoutCountriesInput[] No
deleteMany PromotionScalarWhereInput | PromotionScalarWhereInput[] No

BrandTemplateUncheckedUpdateManyWithoutCountryNestedInput

Name Type Nullable
create BrandTemplateCreateWithoutCountryInput | BrandTemplateCreateWithoutCountryInput[] | BrandTemplateUncheckedCreateWithoutCountryInput | BrandTemplateUncheckedCreateWithoutCountryInput[] No
connectOrCreate BrandTemplateCreateOrConnectWithoutCountryInput | BrandTemplateCreateOrConnectWithoutCountryInput[] No
upsert BrandTemplateUpsertWithWhereUniqueWithoutCountryInput | BrandTemplateUpsertWithWhereUniqueWithoutCountryInput[] No
createMany BrandTemplateCreateManyCountryInputEnvelope No
set BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
disconnect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
delete BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
connect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
update BrandTemplateUpdateWithWhereUniqueWithoutCountryInput | BrandTemplateUpdateWithWhereUniqueWithoutCountryInput[] No
updateMany BrandTemplateUpdateManyWithWhereWithoutCountryInput | BrandTemplateUpdateManyWithWhereWithoutCountryInput[] No
deleteMany BrandTemplateScalarWhereInput | BrandTemplateScalarWhereInput[] No

FeatureUncheckedUpdateManyWithoutCountriesNestedInput

Name Type Nullable
create FeatureCreateWithoutCountriesInput | FeatureCreateWithoutCountriesInput[] | FeatureUncheckedCreateWithoutCountriesInput | FeatureUncheckedCreateWithoutCountriesInput[] No
connectOrCreate FeatureCreateOrConnectWithoutCountriesInput | FeatureCreateOrConnectWithoutCountriesInput[] No
upsert FeatureUpsertWithWhereUniqueWithoutCountriesInput | FeatureUpsertWithWhereUniqueWithoutCountriesInput[] No
set FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
disconnect FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
delete FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
connect FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
update FeatureUpdateWithWhereUniqueWithoutCountriesInput | FeatureUpdateWithWhereUniqueWithoutCountriesInput[] No
updateMany FeatureUpdateManyWithWhereWithoutCountriesInput | FeatureUpdateManyWithWhereWithoutCountriesInput[] No
deleteMany FeatureScalarWhereInput | FeatureScalarWhereInput[] No





NullableStringFieldUpdateOperationsInput

Name Type Nullable
set String | Null Yes

PermissionsUpdateManyWithoutRoleNestedInput

Name Type Nullable
create PermissionsCreateWithoutRoleInput | PermissionsCreateWithoutRoleInput[] | PermissionsUncheckedCreateWithoutRoleInput | PermissionsUncheckedCreateWithoutRoleInput[] No
connectOrCreate PermissionsCreateOrConnectWithoutRoleInput | PermissionsCreateOrConnectWithoutRoleInput[] No
upsert PermissionsUpsertWithWhereUniqueWithoutRoleInput | PermissionsUpsertWithWhereUniqueWithoutRoleInput[] No
createMany PermissionsCreateManyRoleInputEnvelope No
set PermissionsWhereUniqueInput | PermissionsWhereUniqueInput[] No
disconnect PermissionsWhereUniqueInput | PermissionsWhereUniqueInput[] No
delete PermissionsWhereUniqueInput | PermissionsWhereUniqueInput[] No
connect PermissionsWhereUniqueInput | PermissionsWhereUniqueInput[] No
update PermissionsUpdateWithWhereUniqueWithoutRoleInput | PermissionsUpdateWithWhereUniqueWithoutRoleInput[] No
updateMany PermissionsUpdateManyWithWhereWithoutRoleInput | PermissionsUpdateManyWithWhereWithoutRoleInput[] No
deleteMany PermissionsScalarWhereInput | PermissionsScalarWhereInput[] No

UserUpdateManyWithoutRoleNestedInput

Name Type Nullable
create UserCreateWithoutRoleInput | UserCreateWithoutRoleInput[] | UserUncheckedCreateWithoutRoleInput | UserUncheckedCreateWithoutRoleInput[] No
connectOrCreate UserCreateOrConnectWithoutRoleInput | UserCreateOrConnectWithoutRoleInput[] No
upsert UserUpsertWithWhereUniqueWithoutRoleInput | UserUpsertWithWhereUniqueWithoutRoleInput[] No
createMany UserCreateManyRoleInputEnvelope No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutRoleInput | UserUpdateWithWhereUniqueWithoutRoleInput[] No
updateMany UserUpdateManyWithWhereWithoutRoleInput | UserUpdateManyWithWhereWithoutRoleInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No

PermissionsUncheckedUpdateManyWithoutRoleNestedInput

Name Type Nullable
create PermissionsCreateWithoutRoleInput | PermissionsCreateWithoutRoleInput[] | PermissionsUncheckedCreateWithoutRoleInput | PermissionsUncheckedCreateWithoutRoleInput[] No
connectOrCreate PermissionsCreateOrConnectWithoutRoleInput | PermissionsCreateOrConnectWithoutRoleInput[] No
upsert PermissionsUpsertWithWhereUniqueWithoutRoleInput | PermissionsUpsertWithWhereUniqueWithoutRoleInput[] No
createMany PermissionsCreateManyRoleInputEnvelope No
set PermissionsWhereUniqueInput | PermissionsWhereUniqueInput[] No
disconnect PermissionsWhereUniqueInput | PermissionsWhereUniqueInput[] No
delete PermissionsWhereUniqueInput | PermissionsWhereUniqueInput[] No
connect PermissionsWhereUniqueInput | PermissionsWhereUniqueInput[] No
update PermissionsUpdateWithWhereUniqueWithoutRoleInput | PermissionsUpdateWithWhereUniqueWithoutRoleInput[] No
updateMany PermissionsUpdateManyWithWhereWithoutRoleInput | PermissionsUpdateManyWithWhereWithoutRoleInput[] No
deleteMany PermissionsScalarWhereInput | PermissionsScalarWhereInput[] No

UserUncheckedUpdateManyWithoutRoleNestedInput

Name Type Nullable
create UserCreateWithoutRoleInput | UserCreateWithoutRoleInput[] | UserUncheckedCreateWithoutRoleInput | UserUncheckedCreateWithoutRoleInput[] No
connectOrCreate UserCreateOrConnectWithoutRoleInput | UserCreateOrConnectWithoutRoleInput[] No
upsert UserUpsertWithWhereUniqueWithoutRoleInput | UserUpsertWithWhereUniqueWithoutRoleInput[] No
createMany UserCreateManyRoleInputEnvelope No
set UserWhereUniqueInput | UserWhereUniqueInput[] No
disconnect UserWhereUniqueInput | UserWhereUniqueInput[] No
delete UserWhereUniqueInput | UserWhereUniqueInput[] No
connect UserWhereUniqueInput | UserWhereUniqueInput[] No
update UserUpdateWithWhereUniqueWithoutRoleInput | UserUpdateWithWhereUniqueWithoutRoleInput[] No
updateMany UserUpdateManyWithWhereWithoutRoleInput | UserUpdateManyWithWhereWithoutRoleInput[] No
deleteMany UserScalarWhereInput | UserScalarWhereInput[] No



PermissionsUpdateManyWithoutDomainNestedInput

Name Type Nullable
create PermissionsCreateWithoutDomainInput | PermissionsCreateWithoutDomainInput[] | PermissionsUncheckedCreateWithoutDomainInput | PermissionsUncheckedCreateWithoutDomainInput[] No
connectOrCreate PermissionsCreateOrConnectWithoutDomainInput | PermissionsCreateOrConnectWithoutDomainInput[] No
upsert PermissionsUpsertWithWhereUniqueWithoutDomainInput | PermissionsUpsertWithWhereUniqueWithoutDomainInput[] No
createMany PermissionsCreateManyDomainInputEnvelope No
set PermissionsWhereUniqueInput | PermissionsWhereUniqueInput[] No
disconnect PermissionsWhereUniqueInput | PermissionsWhereUniqueInput[] No
delete PermissionsWhereUniqueInput | PermissionsWhereUniqueInput[] No
connect PermissionsWhereUniqueInput | PermissionsWhereUniqueInput[] No
update PermissionsUpdateWithWhereUniqueWithoutDomainInput | PermissionsUpdateWithWhereUniqueWithoutDomainInput[] No
updateMany PermissionsUpdateManyWithWhereWithoutDomainInput | PermissionsUpdateManyWithWhereWithoutDomainInput[] No
deleteMany PermissionsScalarWhereInput | PermissionsScalarWhereInput[] No

PermissionsUncheckedUpdateManyWithoutDomainNestedInput

Name Type Nullable
create PermissionsCreateWithoutDomainInput | PermissionsCreateWithoutDomainInput[] | PermissionsUncheckedCreateWithoutDomainInput | PermissionsUncheckedCreateWithoutDomainInput[] No
connectOrCreate PermissionsCreateOrConnectWithoutDomainInput | PermissionsCreateOrConnectWithoutDomainInput[] No
upsert PermissionsUpsertWithWhereUniqueWithoutDomainInput | PermissionsUpsertWithWhereUniqueWithoutDomainInput[] No
createMany PermissionsCreateManyDomainInputEnvelope No
set PermissionsWhereUniqueInput | PermissionsWhereUniqueInput[] No
disconnect PermissionsWhereUniqueInput | PermissionsWhereUniqueInput[] No
delete PermissionsWhereUniqueInput | PermissionsWhereUniqueInput[] No
connect PermissionsWhereUniqueInput | PermissionsWhereUniqueInput[] No
update PermissionsUpdateWithWhereUniqueWithoutDomainInput | PermissionsUpdateWithWhereUniqueWithoutDomainInput[] No
updateMany PermissionsUpdateManyWithWhereWithoutDomainInput | PermissionsUpdateManyWithWhereWithoutDomainInput[] No
deleteMany PermissionsScalarWhereInput | PermissionsScalarWhereInput[] No

DomainCreateNestedOneWithoutPermissionsInput

Name Type Nullable
create DomainCreateWithoutPermissionsInput | DomainUncheckedCreateWithoutPermissionsInput No
connectOrCreate DomainCreateOrConnectWithoutPermissionsInput No
connect DomainWhereUniqueInput No

RoleCreateNestedOneWithoutPermissionsInput

Name Type Nullable
create RoleCreateWithoutPermissionsInput | RoleUncheckedCreateWithoutPermissionsInput No
connectOrCreate RoleCreateOrConnectWithoutPermissionsInput No
connect RoleWhereUniqueInput No

EnumPermissionTypesFieldUpdateOperationsInput

Name Type Nullable
set PermissionTypes No



RoleCreateNestedOneWithoutUserInput

Name Type Nullable
create RoleCreateWithoutUserInput | RoleUncheckedCreateWithoutUserInput No
connectOrCreate RoleCreateOrConnectWithoutUserInput No
connect RoleWhereUniqueInput No

CountryCreateNestedOneWithoutUserInput

Name Type Nullable
create CountryCreateWithoutUserInput | CountryUncheckedCreateWithoutUserInput No
connectOrCreate CountryCreateOrConnectWithoutUserInput No
connect CountryWhereUniqueInput No

















NullableDateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime | Null Yes

NullableEnumUserStatusFieldUpdateOperationsInput

Name Type Nullable
set UserStatus | Null Yes

NullableIntFieldUpdateOperationsInput

Name Type Nullable
set Int | Null Yes
increment Int No
decrement Int No
multiply Int No
divide Int No

DateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime No



TeamUpdateManyWithoutUserNestedInput

Name Type Nullable
create TeamCreateWithoutUserInput | TeamCreateWithoutUserInput[] | TeamUncheckedCreateWithoutUserInput | TeamUncheckedCreateWithoutUserInput[] No
connectOrCreate TeamCreateOrConnectWithoutUserInput | TeamCreateOrConnectWithoutUserInput[] No
upsert TeamUpsertWithWhereUniqueWithoutUserInput | TeamUpsertWithWhereUniqueWithoutUserInput[] No
createMany TeamCreateManyUserInputEnvelope No
set TeamWhereUniqueInput | TeamWhereUniqueInput[] No
disconnect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
delete TeamWhereUniqueInput | TeamWhereUniqueInput[] No
connect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
update TeamUpdateWithWhereUniqueWithoutUserInput | TeamUpdateWithWhereUniqueWithoutUserInput[] No
updateMany TeamUpdateManyWithWhereWithoutUserInput | TeamUpdateManyWithWhereWithoutUserInput[] No
deleteMany TeamScalarWhereInput | TeamScalarWhereInput[] No

TaskUpdateManyWithoutAssigneeNestedInput

Name Type Nullable
create TaskCreateWithoutAssigneeInput | TaskCreateWithoutAssigneeInput[] | TaskUncheckedCreateWithoutAssigneeInput | TaskUncheckedCreateWithoutAssigneeInput[] No
connectOrCreate TaskCreateOrConnectWithoutAssigneeInput | TaskCreateOrConnectWithoutAssigneeInput[] No
upsert TaskUpsertWithWhereUniqueWithoutAssigneeInput | TaskUpsertWithWhereUniqueWithoutAssigneeInput[] No
createMany TaskCreateManyAssigneeInputEnvelope No
set TaskWhereUniqueInput | TaskWhereUniqueInput[] No
disconnect TaskWhereUniqueInput | TaskWhereUniqueInput[] No
delete TaskWhereUniqueInput | TaskWhereUniqueInput[] No
connect TaskWhereUniqueInput | TaskWhereUniqueInput[] No
update TaskUpdateWithWhereUniqueWithoutAssigneeInput | TaskUpdateWithWhereUniqueWithoutAssigneeInput[] No
updateMany TaskUpdateManyWithWhereWithoutAssigneeInput | TaskUpdateManyWithWhereWithoutAssigneeInput[] No
deleteMany TaskScalarWhereInput | TaskScalarWhereInput[] No

TaskUpdateManyWithoutCreatedByNestedInput

Name Type Nullable
create TaskCreateWithoutCreatedByInput | TaskCreateWithoutCreatedByInput[] | TaskUncheckedCreateWithoutCreatedByInput | TaskUncheckedCreateWithoutCreatedByInput[] No
connectOrCreate TaskCreateOrConnectWithoutCreatedByInput | TaskCreateOrConnectWithoutCreatedByInput[] No
upsert TaskUpsertWithWhereUniqueWithoutCreatedByInput | TaskUpsertWithWhereUniqueWithoutCreatedByInput[] No
createMany TaskCreateManyCreatedByInputEnvelope No
set TaskWhereUniqueInput | TaskWhereUniqueInput[] No
disconnect TaskWhereUniqueInput | TaskWhereUniqueInput[] No
delete TaskWhereUniqueInput | TaskWhereUniqueInput[] No
connect TaskWhereUniqueInput | TaskWhereUniqueInput[] No
update TaskUpdateWithWhereUniqueWithoutCreatedByInput | TaskUpdateWithWhereUniqueWithoutCreatedByInput[] No
updateMany TaskUpdateManyWithWhereWithoutCreatedByInput | TaskUpdateManyWithWhereWithoutCreatedByInput[] No
deleteMany TaskScalarWhereInput | TaskScalarWhereInput[] No

PromotionUpdateManyWithoutCreatedByNestedInput

Name Type Nullable
create PromotionCreateWithoutCreatedByInput | PromotionCreateWithoutCreatedByInput[] | PromotionUncheckedCreateWithoutCreatedByInput | PromotionUncheckedCreateWithoutCreatedByInput[] No
connectOrCreate PromotionCreateOrConnectWithoutCreatedByInput | PromotionCreateOrConnectWithoutCreatedByInput[] No
upsert PromotionUpsertWithWhereUniqueWithoutCreatedByInput | PromotionUpsertWithWhereUniqueWithoutCreatedByInput[] No
createMany PromotionCreateManyCreatedByInputEnvelope No
set PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
disconnect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
delete PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
connect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
update PromotionUpdateWithWhereUniqueWithoutCreatedByInput | PromotionUpdateWithWhereUniqueWithoutCreatedByInput[] No
updateMany PromotionUpdateManyWithWhereWithoutCreatedByInput | PromotionUpdateManyWithWhereWithoutCreatedByInput[] No
deleteMany PromotionScalarWhereInput | PromotionScalarWhereInput[] No

PaymentUpdateManyWithoutCashierNestedInput

Name Type Nullable
create PaymentCreateWithoutCashierInput | PaymentCreateWithoutCashierInput[] | PaymentUncheckedCreateWithoutCashierInput | PaymentUncheckedCreateWithoutCashierInput[] No
connectOrCreate PaymentCreateOrConnectWithoutCashierInput | PaymentCreateOrConnectWithoutCashierInput[] No
upsert PaymentUpsertWithWhereUniqueWithoutCashierInput | PaymentUpsertWithWhereUniqueWithoutCashierInput[] No
createMany PaymentCreateManyCashierInputEnvelope No
set PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
disconnect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
delete PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
connect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
update PaymentUpdateWithWhereUniqueWithoutCashierInput | PaymentUpdateWithWhereUniqueWithoutCashierInput[] No
updateMany PaymentUpdateManyWithWhereWithoutCashierInput | PaymentUpdateManyWithWhereWithoutCashierInput[] No
deleteMany PaymentScalarWhereInput | PaymentScalarWhereInput[] No

BrandTemplateUpdateManyWithoutCreatedByNestedInput

Name Type Nullable
create BrandTemplateCreateWithoutCreatedByInput | BrandTemplateCreateWithoutCreatedByInput[] | BrandTemplateUncheckedCreateWithoutCreatedByInput | BrandTemplateUncheckedCreateWithoutCreatedByInput[] No
connectOrCreate BrandTemplateCreateOrConnectWithoutCreatedByInput | BrandTemplateCreateOrConnectWithoutCreatedByInput[] No
upsert BrandTemplateUpsertWithWhereUniqueWithoutCreatedByInput | BrandTemplateUpsertWithWhereUniqueWithoutCreatedByInput[] No
createMany BrandTemplateCreateManyCreatedByInputEnvelope No
set BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
disconnect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
delete BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
connect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
update BrandTemplateUpdateWithWhereUniqueWithoutCreatedByInput | BrandTemplateUpdateWithWhereUniqueWithoutCreatedByInput[] No
updateMany BrandTemplateUpdateManyWithWhereWithoutCreatedByInput | BrandTemplateUpdateManyWithWhereWithoutCreatedByInput[] No
deleteMany BrandTemplateScalarWhereInput | BrandTemplateScalarWhereInput[] No

BrandTemplateUpdateManyWithoutReviewerNestedInput

Name Type Nullable
create BrandTemplateCreateWithoutReviewerInput | BrandTemplateCreateWithoutReviewerInput[] | BrandTemplateUncheckedCreateWithoutReviewerInput | BrandTemplateUncheckedCreateWithoutReviewerInput[] No
connectOrCreate BrandTemplateCreateOrConnectWithoutReviewerInput | BrandTemplateCreateOrConnectWithoutReviewerInput[] No
upsert BrandTemplateUpsertWithWhereUniqueWithoutReviewerInput | BrandTemplateUpsertWithWhereUniqueWithoutReviewerInput[] No
createMany BrandTemplateCreateManyReviewerInputEnvelope No
set BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
disconnect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
delete BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
connect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
update BrandTemplateUpdateWithWhereUniqueWithoutReviewerInput | BrandTemplateUpdateWithWhereUniqueWithoutReviewerInput[] No
updateMany BrandTemplateUpdateManyWithWhereWithoutReviewerInput | BrandTemplateUpdateManyWithWhereWithoutReviewerInput[] No
deleteMany BrandTemplateScalarWhereInput | BrandTemplateScalarWhereInput[] No

ClientEditUpdateManyWithoutApprovedByNestedInput

Name Type Nullable
create ClientEditCreateWithoutApprovedByInput | ClientEditCreateWithoutApprovedByInput[] | ClientEditUncheckedCreateWithoutApprovedByInput | ClientEditUncheckedCreateWithoutApprovedByInput[] No
connectOrCreate ClientEditCreateOrConnectWithoutApprovedByInput | ClientEditCreateOrConnectWithoutApprovedByInput[] No
upsert ClientEditUpsertWithWhereUniqueWithoutApprovedByInput | ClientEditUpsertWithWhereUniqueWithoutApprovedByInput[] No
createMany ClientEditCreateManyApprovedByInputEnvelope No
set ClientEditWhereUniqueInput | ClientEditWhereUniqueInput[] No
disconnect ClientEditWhereUniqueInput | ClientEditWhereUniqueInput[] No
delete ClientEditWhereUniqueInput | ClientEditWhereUniqueInput[] No
connect ClientEditWhereUniqueInput | ClientEditWhereUniqueInput[] No
update ClientEditUpdateWithWhereUniqueWithoutApprovedByInput | ClientEditUpdateWithWhereUniqueWithoutApprovedByInput[] No
updateMany ClientEditUpdateManyWithWhereWithoutApprovedByInput | ClientEditUpdateManyWithWhereWithoutApprovedByInput[] No
deleteMany ClientEditScalarWhereInput | ClientEditScalarWhereInput[] No

TeamUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create TeamCreateWithoutUserInput | TeamCreateWithoutUserInput[] | TeamUncheckedCreateWithoutUserInput | TeamUncheckedCreateWithoutUserInput[] No
connectOrCreate TeamCreateOrConnectWithoutUserInput | TeamCreateOrConnectWithoutUserInput[] No
upsert TeamUpsertWithWhereUniqueWithoutUserInput | TeamUpsertWithWhereUniqueWithoutUserInput[] No
createMany TeamCreateManyUserInputEnvelope No
set TeamWhereUniqueInput | TeamWhereUniqueInput[] No
disconnect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
delete TeamWhereUniqueInput | TeamWhereUniqueInput[] No
connect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
update TeamUpdateWithWhereUniqueWithoutUserInput | TeamUpdateWithWhereUniqueWithoutUserInput[] No
updateMany TeamUpdateManyWithWhereWithoutUserInput | TeamUpdateManyWithWhereWithoutUserInput[] No
deleteMany TeamScalarWhereInput | TeamScalarWhereInput[] No

TaskUncheckedUpdateManyWithoutAssigneeNestedInput

Name Type Nullable
create TaskCreateWithoutAssigneeInput | TaskCreateWithoutAssigneeInput[] | TaskUncheckedCreateWithoutAssigneeInput | TaskUncheckedCreateWithoutAssigneeInput[] No
connectOrCreate TaskCreateOrConnectWithoutAssigneeInput | TaskCreateOrConnectWithoutAssigneeInput[] No
upsert TaskUpsertWithWhereUniqueWithoutAssigneeInput | TaskUpsertWithWhereUniqueWithoutAssigneeInput[] No
createMany TaskCreateManyAssigneeInputEnvelope No
set TaskWhereUniqueInput | TaskWhereUniqueInput[] No
disconnect TaskWhereUniqueInput | TaskWhereUniqueInput[] No
delete TaskWhereUniqueInput | TaskWhereUniqueInput[] No
connect TaskWhereUniqueInput | TaskWhereUniqueInput[] No
update TaskUpdateWithWhereUniqueWithoutAssigneeInput | TaskUpdateWithWhereUniqueWithoutAssigneeInput[] No
updateMany TaskUpdateManyWithWhereWithoutAssigneeInput | TaskUpdateManyWithWhereWithoutAssigneeInput[] No
deleteMany TaskScalarWhereInput | TaskScalarWhereInput[] No

TaskUncheckedUpdateManyWithoutCreatedByNestedInput

Name Type Nullable
create TaskCreateWithoutCreatedByInput | TaskCreateWithoutCreatedByInput[] | TaskUncheckedCreateWithoutCreatedByInput | TaskUncheckedCreateWithoutCreatedByInput[] No
connectOrCreate TaskCreateOrConnectWithoutCreatedByInput | TaskCreateOrConnectWithoutCreatedByInput[] No
upsert TaskUpsertWithWhereUniqueWithoutCreatedByInput | TaskUpsertWithWhereUniqueWithoutCreatedByInput[] No
createMany TaskCreateManyCreatedByInputEnvelope No
set TaskWhereUniqueInput | TaskWhereUniqueInput[] No
disconnect TaskWhereUniqueInput | TaskWhereUniqueInput[] No
delete TaskWhereUniqueInput | TaskWhereUniqueInput[] No
connect TaskWhereUniqueInput | TaskWhereUniqueInput[] No
update TaskUpdateWithWhereUniqueWithoutCreatedByInput | TaskUpdateWithWhereUniqueWithoutCreatedByInput[] No
updateMany TaskUpdateManyWithWhereWithoutCreatedByInput | TaskUpdateManyWithWhereWithoutCreatedByInput[] No
deleteMany TaskScalarWhereInput | TaskScalarWhereInput[] No

PromotionUncheckedUpdateManyWithoutCreatedByNestedInput

Name Type Nullable
create PromotionCreateWithoutCreatedByInput | PromotionCreateWithoutCreatedByInput[] | PromotionUncheckedCreateWithoutCreatedByInput | PromotionUncheckedCreateWithoutCreatedByInput[] No
connectOrCreate PromotionCreateOrConnectWithoutCreatedByInput | PromotionCreateOrConnectWithoutCreatedByInput[] No
upsert PromotionUpsertWithWhereUniqueWithoutCreatedByInput | PromotionUpsertWithWhereUniqueWithoutCreatedByInput[] No
createMany PromotionCreateManyCreatedByInputEnvelope No
set PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
disconnect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
delete PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
connect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
update PromotionUpdateWithWhereUniqueWithoutCreatedByInput | PromotionUpdateWithWhereUniqueWithoutCreatedByInput[] No
updateMany PromotionUpdateManyWithWhereWithoutCreatedByInput | PromotionUpdateManyWithWhereWithoutCreatedByInput[] No
deleteMany PromotionScalarWhereInput | PromotionScalarWhereInput[] No

PaymentUncheckedUpdateManyWithoutCashierNestedInput

Name Type Nullable
create PaymentCreateWithoutCashierInput | PaymentCreateWithoutCashierInput[] | PaymentUncheckedCreateWithoutCashierInput | PaymentUncheckedCreateWithoutCashierInput[] No
connectOrCreate PaymentCreateOrConnectWithoutCashierInput | PaymentCreateOrConnectWithoutCashierInput[] No
upsert PaymentUpsertWithWhereUniqueWithoutCashierInput | PaymentUpsertWithWhereUniqueWithoutCashierInput[] No
createMany PaymentCreateManyCashierInputEnvelope No
set PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
disconnect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
delete PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
connect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
update PaymentUpdateWithWhereUniqueWithoutCashierInput | PaymentUpdateWithWhereUniqueWithoutCashierInput[] No
updateMany PaymentUpdateManyWithWhereWithoutCashierInput | PaymentUpdateManyWithWhereWithoutCashierInput[] No
deleteMany PaymentScalarWhereInput | PaymentScalarWhereInput[] No

BrandTemplateUncheckedUpdateManyWithoutCreatedByNestedInput

Name Type Nullable
create BrandTemplateCreateWithoutCreatedByInput | BrandTemplateCreateWithoutCreatedByInput[] | BrandTemplateUncheckedCreateWithoutCreatedByInput | BrandTemplateUncheckedCreateWithoutCreatedByInput[] No
connectOrCreate BrandTemplateCreateOrConnectWithoutCreatedByInput | BrandTemplateCreateOrConnectWithoutCreatedByInput[] No
upsert BrandTemplateUpsertWithWhereUniqueWithoutCreatedByInput | BrandTemplateUpsertWithWhereUniqueWithoutCreatedByInput[] No
createMany BrandTemplateCreateManyCreatedByInputEnvelope No
set BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
disconnect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
delete BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
connect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
update BrandTemplateUpdateWithWhereUniqueWithoutCreatedByInput | BrandTemplateUpdateWithWhereUniqueWithoutCreatedByInput[] No
updateMany BrandTemplateUpdateManyWithWhereWithoutCreatedByInput | BrandTemplateUpdateManyWithWhereWithoutCreatedByInput[] No
deleteMany BrandTemplateScalarWhereInput | BrandTemplateScalarWhereInput[] No

BrandTemplateUncheckedUpdateManyWithoutReviewerNestedInput

Name Type Nullable
create BrandTemplateCreateWithoutReviewerInput | BrandTemplateCreateWithoutReviewerInput[] | BrandTemplateUncheckedCreateWithoutReviewerInput | BrandTemplateUncheckedCreateWithoutReviewerInput[] No
connectOrCreate BrandTemplateCreateOrConnectWithoutReviewerInput | BrandTemplateCreateOrConnectWithoutReviewerInput[] No
upsert BrandTemplateUpsertWithWhereUniqueWithoutReviewerInput | BrandTemplateUpsertWithWhereUniqueWithoutReviewerInput[] No
createMany BrandTemplateCreateManyReviewerInputEnvelope No
set BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
disconnect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
delete BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
connect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
update BrandTemplateUpdateWithWhereUniqueWithoutReviewerInput | BrandTemplateUpdateWithWhereUniqueWithoutReviewerInput[] No
updateMany BrandTemplateUpdateManyWithWhereWithoutReviewerInput | BrandTemplateUpdateManyWithWhereWithoutReviewerInput[] No
deleteMany BrandTemplateScalarWhereInput | BrandTemplateScalarWhereInput[] No

ClientEditUncheckedUpdateManyWithoutApprovedByNestedInput

Name Type Nullable
create ClientEditCreateWithoutApprovedByInput | ClientEditCreateWithoutApprovedByInput[] | ClientEditUncheckedCreateWithoutApprovedByInput | ClientEditUncheckedCreateWithoutApprovedByInput[] No
connectOrCreate ClientEditCreateOrConnectWithoutApprovedByInput | ClientEditCreateOrConnectWithoutApprovedByInput[] No
upsert ClientEditUpsertWithWhereUniqueWithoutApprovedByInput | ClientEditUpsertWithWhereUniqueWithoutApprovedByInput[] No
createMany ClientEditCreateManyApprovedByInputEnvelope No
set ClientEditWhereUniqueInput | ClientEditWhereUniqueInput[] No
disconnect ClientEditWhereUniqueInput | ClientEditWhereUniqueInput[] No
delete ClientEditWhereUniqueInput | ClientEditWhereUniqueInput[] No
connect ClientEditWhereUniqueInput | ClientEditWhereUniqueInput[] No
update ClientEditUpdateWithWhereUniqueWithoutApprovedByInput | ClientEditUpdateWithWhereUniqueWithoutApprovedByInput[] No
updateMany ClientEditUpdateManyWithWhereWithoutApprovedByInput | ClientEditUpdateManyWithWhereWithoutApprovedByInput[] No
deleteMany ClientEditScalarWhereInput | ClientEditScalarWhereInput[] No

UserCreateNestedOneWithoutTeamsInput

Name Type Nullable
create UserCreateWithoutTeamsInput | UserUncheckedCreateWithoutTeamsInput No
connectOrCreate UserCreateOrConnectWithoutTeamsInput No
connect UserWhereUniqueInput No




GoalUpdateManyWithoutTeamsNestedInput

Name Type Nullable
create GoalCreateWithoutTeamsInput | GoalCreateWithoutTeamsInput[] | GoalUncheckedCreateWithoutTeamsInput | GoalUncheckedCreateWithoutTeamsInput[] No
connectOrCreate GoalCreateOrConnectWithoutTeamsInput | GoalCreateOrConnectWithoutTeamsInput[] No
upsert GoalUpsertWithWhereUniqueWithoutTeamsInput | GoalUpsertWithWhereUniqueWithoutTeamsInput[] No
set GoalWhereUniqueInput | GoalWhereUniqueInput[] No
disconnect GoalWhereUniqueInput | GoalWhereUniqueInput[] No
delete GoalWhereUniqueInput | GoalWhereUniqueInput[] No
connect GoalWhereUniqueInput | GoalWhereUniqueInput[] No
update GoalUpdateWithWhereUniqueWithoutTeamsInput | GoalUpdateWithWhereUniqueWithoutTeamsInput[] No
updateMany GoalUpdateManyWithWhereWithoutTeamsInput | GoalUpdateManyWithWhereWithoutTeamsInput[] No
deleteMany GoalScalarWhereInput | GoalScalarWhereInput[] No

GoalUncheckedUpdateManyWithoutTeamsNestedInput

Name Type Nullable
create GoalCreateWithoutTeamsInput | GoalCreateWithoutTeamsInput[] | GoalUncheckedCreateWithoutTeamsInput | GoalUncheckedCreateWithoutTeamsInput[] No
connectOrCreate GoalCreateOrConnectWithoutTeamsInput | GoalCreateOrConnectWithoutTeamsInput[] No
upsert GoalUpsertWithWhereUniqueWithoutTeamsInput | GoalUpsertWithWhereUniqueWithoutTeamsInput[] No
set GoalWhereUniqueInput | GoalWhereUniqueInput[] No
disconnect GoalWhereUniqueInput | GoalWhereUniqueInput[] No
delete GoalWhereUniqueInput | GoalWhereUniqueInput[] No
connect GoalWhereUniqueInput | GoalWhereUniqueInput[] No
update GoalUpdateWithWhereUniqueWithoutTeamsInput | GoalUpdateWithWhereUniqueWithoutTeamsInput[] No
updateMany GoalUpdateManyWithWhereWithoutTeamsInput | GoalUpdateManyWithWhereWithoutTeamsInput[] No
deleteMany GoalScalarWhereInput | GoalScalarWhereInput[] No





NullableBoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean | Null Yes

TeamUpdateManyWithoutGoalsNestedInput

Name Type Nullable
create TeamCreateWithoutGoalsInput | TeamCreateWithoutGoalsInput[] | TeamUncheckedCreateWithoutGoalsInput | TeamUncheckedCreateWithoutGoalsInput[] No
connectOrCreate TeamCreateOrConnectWithoutGoalsInput | TeamCreateOrConnectWithoutGoalsInput[] No
upsert TeamUpsertWithWhereUniqueWithoutGoalsInput | TeamUpsertWithWhereUniqueWithoutGoalsInput[] No
set TeamWhereUniqueInput | TeamWhereUniqueInput[] No
disconnect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
delete TeamWhereUniqueInput | TeamWhereUniqueInput[] No
connect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
update TeamUpdateWithWhereUniqueWithoutGoalsInput | TeamUpdateWithWhereUniqueWithoutGoalsInput[] No
updateMany TeamUpdateManyWithWhereWithoutGoalsInput | TeamUpdateManyWithWhereWithoutGoalsInput[] No
deleteMany TeamScalarWhereInput | TeamScalarWhereInput[] No

TaskUpdateManyWithoutGoalNestedInput

Name Type Nullable
create TaskCreateWithoutGoalInput | TaskCreateWithoutGoalInput[] | TaskUncheckedCreateWithoutGoalInput | TaskUncheckedCreateWithoutGoalInput[] No
connectOrCreate TaskCreateOrConnectWithoutGoalInput | TaskCreateOrConnectWithoutGoalInput[] No
upsert TaskUpsertWithWhereUniqueWithoutGoalInput | TaskUpsertWithWhereUniqueWithoutGoalInput[] No
createMany TaskCreateManyGoalInputEnvelope No
set TaskWhereUniqueInput | TaskWhereUniqueInput[] No
disconnect TaskWhereUniqueInput | TaskWhereUniqueInput[] No
delete TaskWhereUniqueInput | TaskWhereUniqueInput[] No
connect TaskWhereUniqueInput | TaskWhereUniqueInput[] No
update TaskUpdateWithWhereUniqueWithoutGoalInput | TaskUpdateWithWhereUniqueWithoutGoalInput[] No
updateMany TaskUpdateManyWithWhereWithoutGoalInput | TaskUpdateManyWithWhereWithoutGoalInput[] No
deleteMany TaskScalarWhereInput | TaskScalarWhereInput[] No

TeamUncheckedUpdateManyWithoutGoalsNestedInput

Name Type Nullable
create TeamCreateWithoutGoalsInput | TeamCreateWithoutGoalsInput[] | TeamUncheckedCreateWithoutGoalsInput | TeamUncheckedCreateWithoutGoalsInput[] No
connectOrCreate TeamCreateOrConnectWithoutGoalsInput | TeamCreateOrConnectWithoutGoalsInput[] No
upsert TeamUpsertWithWhereUniqueWithoutGoalsInput | TeamUpsertWithWhereUniqueWithoutGoalsInput[] No
set TeamWhereUniqueInput | TeamWhereUniqueInput[] No
disconnect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
delete TeamWhereUniqueInput | TeamWhereUniqueInput[] No
connect TeamWhereUniqueInput | TeamWhereUniqueInput[] No
update TeamUpdateWithWhereUniqueWithoutGoalsInput | TeamUpdateWithWhereUniqueWithoutGoalsInput[] No
updateMany TeamUpdateManyWithWhereWithoutGoalsInput | TeamUpdateManyWithWhereWithoutGoalsInput[] No
deleteMany TeamScalarWhereInput | TeamScalarWhereInput[] No

TaskUncheckedUpdateManyWithoutGoalNestedInput

Name Type Nullable
create TaskCreateWithoutGoalInput | TaskCreateWithoutGoalInput[] | TaskUncheckedCreateWithoutGoalInput | TaskUncheckedCreateWithoutGoalInput[] No
connectOrCreate TaskCreateOrConnectWithoutGoalInput | TaskCreateOrConnectWithoutGoalInput[] No
upsert TaskUpsertWithWhereUniqueWithoutGoalInput | TaskUpsertWithWhereUniqueWithoutGoalInput[] No
createMany TaskCreateManyGoalInputEnvelope No
set TaskWhereUniqueInput | TaskWhereUniqueInput[] No
disconnect TaskWhereUniqueInput | TaskWhereUniqueInput[] No
delete TaskWhereUniqueInput | TaskWhereUniqueInput[] No
connect TaskWhereUniqueInput | TaskWhereUniqueInput[] No
update TaskUpdateWithWhereUniqueWithoutGoalInput | TaskUpdateWithWhereUniqueWithoutGoalInput[] No
updateMany TaskUpdateManyWithWhereWithoutGoalInput | TaskUpdateManyWithWhereWithoutGoalInput[] No
deleteMany TaskScalarWhereInput | TaskScalarWhereInput[] No

GoalCreateNestedOneWithoutTasksInput

Name Type Nullable
create GoalCreateWithoutTasksInput | GoalUncheckedCreateWithoutTasksInput No
connectOrCreate GoalCreateOrConnectWithoutTasksInput No
connect GoalWhereUniqueInput No

UserCreateNestedOneWithoutAssignedTasksInput

Name Type Nullable
create UserCreateWithoutAssignedTasksInput | UserUncheckedCreateWithoutAssignedTasksInput No
connectOrCreate UserCreateOrConnectWithoutAssignedTasksInput No
connect UserWhereUniqueInput No

UserCreateNestedOneWithoutCreatedTasksInput

Name Type Nullable
create UserCreateWithoutCreatedTasksInput | UserUncheckedCreateWithoutCreatedTasksInput No
connectOrCreate UserCreateOrConnectWithoutCreatedTasksInput No
connect UserWhereUniqueInput No

NullableEnumTaskPriorityFieldUpdateOperationsInput

Name Type Nullable
set TaskPriority | Null Yes

NullableEnumTaskStageFieldUpdateOperationsInput

Name Type Nullable
set TaskStage | Null Yes












EnumFeatureTypeFieldUpdateOperationsInput

Name Type Nullable
set FeatureType No

IndustryUpdateManyWithoutFeaturesNestedInput

Name Type Nullable
create IndustryCreateWithoutFeaturesInput | IndustryCreateWithoutFeaturesInput[] | IndustryUncheckedCreateWithoutFeaturesInput | IndustryUncheckedCreateWithoutFeaturesInput[] No
connectOrCreate IndustryCreateOrConnectWithoutFeaturesInput | IndustryCreateOrConnectWithoutFeaturesInput[] No
upsert IndustryUpsertWithWhereUniqueWithoutFeaturesInput | IndustryUpsertWithWhereUniqueWithoutFeaturesInput[] No
set IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
disconnect IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
delete IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
connect IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
update IndustryUpdateWithWhereUniqueWithoutFeaturesInput | IndustryUpdateWithWhereUniqueWithoutFeaturesInput[] No
updateMany IndustryUpdateManyWithWhereWithoutFeaturesInput | IndustryUpdateManyWithWhereWithoutFeaturesInput[] No
deleteMany IndustryScalarWhereInput | IndustryScalarWhereInput[] No

CountryUpdateManyWithoutFeaturesNestedInput

Name Type Nullable
create CountryCreateWithoutFeaturesInput | CountryCreateWithoutFeaturesInput[] | CountryUncheckedCreateWithoutFeaturesInput | CountryUncheckedCreateWithoutFeaturesInput[] No
connectOrCreate CountryCreateOrConnectWithoutFeaturesInput | CountryCreateOrConnectWithoutFeaturesInput[] No
upsert CountryUpsertWithWhereUniqueWithoutFeaturesInput | CountryUpsertWithWhereUniqueWithoutFeaturesInput[] No
set CountryWhereUniqueInput | CountryWhereUniqueInput[] No
disconnect CountryWhereUniqueInput | CountryWhereUniqueInput[] No
delete CountryWhereUniqueInput | CountryWhereUniqueInput[] No
connect CountryWhereUniqueInput | CountryWhereUniqueInput[] No
update CountryUpdateWithWhereUniqueWithoutFeaturesInput | CountryUpdateWithWhereUniqueWithoutFeaturesInput[] No
updateMany CountryUpdateManyWithWhereWithoutFeaturesInput | CountryUpdateManyWithWhereWithoutFeaturesInput[] No
deleteMany CountryScalarWhereInput | CountryScalarWhereInput[] No

PromotionUpdateManyWithoutFeaturesNestedInput

Name Type Nullable
create PromotionCreateWithoutFeaturesInput | PromotionCreateWithoutFeaturesInput[] | PromotionUncheckedCreateWithoutFeaturesInput | PromotionUncheckedCreateWithoutFeaturesInput[] No
connectOrCreate PromotionCreateOrConnectWithoutFeaturesInput | PromotionCreateOrConnectWithoutFeaturesInput[] No
upsert PromotionUpsertWithWhereUniqueWithoutFeaturesInput | PromotionUpsertWithWhereUniqueWithoutFeaturesInput[] No
set PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
disconnect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
delete PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
connect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
update PromotionUpdateWithWhereUniqueWithoutFeaturesInput | PromotionUpdateWithWhereUniqueWithoutFeaturesInput[] No
updateMany PromotionUpdateManyWithWhereWithoutFeaturesInput | PromotionUpdateManyWithWhereWithoutFeaturesInput[] No
deleteMany PromotionScalarWhereInput | PromotionScalarWhereInput[] No

PackageUpdateManyWithoutFeaturesNestedInput

Name Type Nullable
create PackageCreateWithoutFeaturesInput | PackageCreateWithoutFeaturesInput[] | PackageUncheckedCreateWithoutFeaturesInput | PackageUncheckedCreateWithoutFeaturesInput[] No
connectOrCreate PackageCreateOrConnectWithoutFeaturesInput | PackageCreateOrConnectWithoutFeaturesInput[] No
upsert PackageUpsertWithWhereUniqueWithoutFeaturesInput | PackageUpsertWithWhereUniqueWithoutFeaturesInput[] No
set PackageWhereUniqueInput | PackageWhereUniqueInput[] No
disconnect PackageWhereUniqueInput | PackageWhereUniqueInput[] No
delete PackageWhereUniqueInput | PackageWhereUniqueInput[] No
connect PackageWhereUniqueInput | PackageWhereUniqueInput[] No
update PackageUpdateWithWhereUniqueWithoutFeaturesInput | PackageUpdateWithWhereUniqueWithoutFeaturesInput[] No
updateMany PackageUpdateManyWithWhereWithoutFeaturesInput | PackageUpdateManyWithWhereWithoutFeaturesInput[] No
deleteMany PackageScalarWhereInput | PackageScalarWhereInput[] No

IndustryUncheckedUpdateManyWithoutFeaturesNestedInput

Name Type Nullable
create IndustryCreateWithoutFeaturesInput | IndustryCreateWithoutFeaturesInput[] | IndustryUncheckedCreateWithoutFeaturesInput | IndustryUncheckedCreateWithoutFeaturesInput[] No
connectOrCreate IndustryCreateOrConnectWithoutFeaturesInput | IndustryCreateOrConnectWithoutFeaturesInput[] No
upsert IndustryUpsertWithWhereUniqueWithoutFeaturesInput | IndustryUpsertWithWhereUniqueWithoutFeaturesInput[] No
set IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
disconnect IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
delete IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
connect IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
update IndustryUpdateWithWhereUniqueWithoutFeaturesInput | IndustryUpdateWithWhereUniqueWithoutFeaturesInput[] No
updateMany IndustryUpdateManyWithWhereWithoutFeaturesInput | IndustryUpdateManyWithWhereWithoutFeaturesInput[] No
deleteMany IndustryScalarWhereInput | IndustryScalarWhereInput[] No

CountryUncheckedUpdateManyWithoutFeaturesNestedInput

Name Type Nullable
create CountryCreateWithoutFeaturesInput | CountryCreateWithoutFeaturesInput[] | CountryUncheckedCreateWithoutFeaturesInput | CountryUncheckedCreateWithoutFeaturesInput[] No
connectOrCreate CountryCreateOrConnectWithoutFeaturesInput | CountryCreateOrConnectWithoutFeaturesInput[] No
upsert CountryUpsertWithWhereUniqueWithoutFeaturesInput | CountryUpsertWithWhereUniqueWithoutFeaturesInput[] No
set CountryWhereUniqueInput | CountryWhereUniqueInput[] No
disconnect CountryWhereUniqueInput | CountryWhereUniqueInput[] No
delete CountryWhereUniqueInput | CountryWhereUniqueInput[] No
connect CountryWhereUniqueInput | CountryWhereUniqueInput[] No
update CountryUpdateWithWhereUniqueWithoutFeaturesInput | CountryUpdateWithWhereUniqueWithoutFeaturesInput[] No
updateMany CountryUpdateManyWithWhereWithoutFeaturesInput | CountryUpdateManyWithWhereWithoutFeaturesInput[] No
deleteMany CountryScalarWhereInput | CountryScalarWhereInput[] No

PromotionUncheckedUpdateManyWithoutFeaturesNestedInput

Name Type Nullable
create PromotionCreateWithoutFeaturesInput | PromotionCreateWithoutFeaturesInput[] | PromotionUncheckedCreateWithoutFeaturesInput | PromotionUncheckedCreateWithoutFeaturesInput[] No
connectOrCreate PromotionCreateOrConnectWithoutFeaturesInput | PromotionCreateOrConnectWithoutFeaturesInput[] No
upsert PromotionUpsertWithWhereUniqueWithoutFeaturesInput | PromotionUpsertWithWhereUniqueWithoutFeaturesInput[] No
set PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
disconnect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
delete PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
connect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
update PromotionUpdateWithWhereUniqueWithoutFeaturesInput | PromotionUpdateWithWhereUniqueWithoutFeaturesInput[] No
updateMany PromotionUpdateManyWithWhereWithoutFeaturesInput | PromotionUpdateManyWithWhereWithoutFeaturesInput[] No
deleteMany PromotionScalarWhereInput | PromotionScalarWhereInput[] No

PackageUncheckedUpdateManyWithoutFeaturesNestedInput

Name Type Nullable
create PackageCreateWithoutFeaturesInput | PackageCreateWithoutFeaturesInput[] | PackageUncheckedCreateWithoutFeaturesInput | PackageUncheckedCreateWithoutFeaturesInput[] No
connectOrCreate PackageCreateOrConnectWithoutFeaturesInput | PackageCreateOrConnectWithoutFeaturesInput[] No
upsert PackageUpsertWithWhereUniqueWithoutFeaturesInput | PackageUpsertWithWhereUniqueWithoutFeaturesInput[] No
set PackageWhereUniqueInput | PackageWhereUniqueInput[] No
disconnect PackageWhereUniqueInput | PackageWhereUniqueInput[] No
delete PackageWhereUniqueInput | PackageWhereUniqueInput[] No
connect PackageWhereUniqueInput | PackageWhereUniqueInput[] No
update PackageUpdateWithWhereUniqueWithoutFeaturesInput | PackageUpdateWithWhereUniqueWithoutFeaturesInput[] No
updateMany PackageUpdateManyWithWhereWithoutFeaturesInput | PackageUpdateManyWithWhereWithoutFeaturesInput[] No
deleteMany PackageScalarWhereInput | PackageScalarWhereInput[] No









IntFieldUpdateOperationsInput

Name Type Nullable
set Int No
increment Int No
decrement Int No
multiply Int No
divide Int No

PackagePriceUpdateManyWithoutPackageNestedInput

Name Type Nullable
create PackagePriceCreateWithoutPackageInput | PackagePriceCreateWithoutPackageInput[] | PackagePriceUncheckedCreateWithoutPackageInput | PackagePriceUncheckedCreateWithoutPackageInput[] No
connectOrCreate PackagePriceCreateOrConnectWithoutPackageInput | PackagePriceCreateOrConnectWithoutPackageInput[] No
upsert PackagePriceUpsertWithWhereUniqueWithoutPackageInput | PackagePriceUpsertWithWhereUniqueWithoutPackageInput[] No
createMany PackagePriceCreateManyPackageInputEnvelope No
set PackagePriceWhereUniqueInput | PackagePriceWhereUniqueInput[] No
disconnect PackagePriceWhereUniqueInput | PackagePriceWhereUniqueInput[] No
delete PackagePriceWhereUniqueInput | PackagePriceWhereUniqueInput[] No
connect PackagePriceWhereUniqueInput | PackagePriceWhereUniqueInput[] No
update PackagePriceUpdateWithWhereUniqueWithoutPackageInput | PackagePriceUpdateWithWhereUniqueWithoutPackageInput[] No
updateMany PackagePriceUpdateManyWithWhereWithoutPackageInput | PackagePriceUpdateManyWithWhereWithoutPackageInput[] No
deleteMany PackagePriceScalarWhereInput | PackagePriceScalarWhereInput[] No

FeatureUpdateManyWithoutPackagesNestedInput

Name Type Nullable
create FeatureCreateWithoutPackagesInput | FeatureCreateWithoutPackagesInput[] | FeatureUncheckedCreateWithoutPackagesInput | FeatureUncheckedCreateWithoutPackagesInput[] No
connectOrCreate FeatureCreateOrConnectWithoutPackagesInput | FeatureCreateOrConnectWithoutPackagesInput[] No
upsert FeatureUpsertWithWhereUniqueWithoutPackagesInput | FeatureUpsertWithWhereUniqueWithoutPackagesInput[] No
set FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
disconnect FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
delete FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
connect FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
update FeatureUpdateWithWhereUniqueWithoutPackagesInput | FeatureUpdateWithWhereUniqueWithoutPackagesInput[] No
updateMany FeatureUpdateManyWithWhereWithoutPackagesInput | FeatureUpdateManyWithWhereWithoutPackagesInput[] No
deleteMany FeatureScalarWhereInput | FeatureScalarWhereInput[] No

PromotionUpdateManyWithoutPackagesNestedInput

Name Type Nullable
create PromotionCreateWithoutPackagesInput | PromotionCreateWithoutPackagesInput[] | PromotionUncheckedCreateWithoutPackagesInput | PromotionUncheckedCreateWithoutPackagesInput[] No
connectOrCreate PromotionCreateOrConnectWithoutPackagesInput | PromotionCreateOrConnectWithoutPackagesInput[] No
upsert PromotionUpsertWithWhereUniqueWithoutPackagesInput | PromotionUpsertWithWhereUniqueWithoutPackagesInput[] No
set PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
disconnect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
delete PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
connect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
update PromotionUpdateWithWhereUniqueWithoutPackagesInput | PromotionUpdateWithWhereUniqueWithoutPackagesInput[] No
updateMany PromotionUpdateManyWithWhereWithoutPackagesInput | PromotionUpdateManyWithWhereWithoutPackagesInput[] No
deleteMany PromotionScalarWhereInput | PromotionScalarWhereInput[] No

PaymentUpdateManyWithoutPackageNestedInput

Name Type Nullable
create PaymentCreateWithoutPackageInput | PaymentCreateWithoutPackageInput[] | PaymentUncheckedCreateWithoutPackageInput | PaymentUncheckedCreateWithoutPackageInput[] No
connectOrCreate PaymentCreateOrConnectWithoutPackageInput | PaymentCreateOrConnectWithoutPackageInput[] No
upsert PaymentUpsertWithWhereUniqueWithoutPackageInput | PaymentUpsertWithWhereUniqueWithoutPackageInput[] No
createMany PaymentCreateManyPackageInputEnvelope No
set PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
disconnect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
delete PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
connect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
update PaymentUpdateWithWhereUniqueWithoutPackageInput | PaymentUpdateWithWhereUniqueWithoutPackageInput[] No
updateMany PaymentUpdateManyWithWhereWithoutPackageInput | PaymentUpdateManyWithWhereWithoutPackageInput[] No
deleteMany PaymentScalarWhereInput | PaymentScalarWhereInput[] No

PackagePriceUncheckedUpdateManyWithoutPackageNestedInput

Name Type Nullable
create PackagePriceCreateWithoutPackageInput | PackagePriceCreateWithoutPackageInput[] | PackagePriceUncheckedCreateWithoutPackageInput | PackagePriceUncheckedCreateWithoutPackageInput[] No
connectOrCreate PackagePriceCreateOrConnectWithoutPackageInput | PackagePriceCreateOrConnectWithoutPackageInput[] No
upsert PackagePriceUpsertWithWhereUniqueWithoutPackageInput | PackagePriceUpsertWithWhereUniqueWithoutPackageInput[] No
createMany PackagePriceCreateManyPackageInputEnvelope No
set PackagePriceWhereUniqueInput | PackagePriceWhereUniqueInput[] No
disconnect PackagePriceWhereUniqueInput | PackagePriceWhereUniqueInput[] No
delete PackagePriceWhereUniqueInput | PackagePriceWhereUniqueInput[] No
connect PackagePriceWhereUniqueInput | PackagePriceWhereUniqueInput[] No
update PackagePriceUpdateWithWhereUniqueWithoutPackageInput | PackagePriceUpdateWithWhereUniqueWithoutPackageInput[] No
updateMany PackagePriceUpdateManyWithWhereWithoutPackageInput | PackagePriceUpdateManyWithWhereWithoutPackageInput[] No
deleteMany PackagePriceScalarWhereInput | PackagePriceScalarWhereInput[] No

FeatureUncheckedUpdateManyWithoutPackagesNestedInput

Name Type Nullable
create FeatureCreateWithoutPackagesInput | FeatureCreateWithoutPackagesInput[] | FeatureUncheckedCreateWithoutPackagesInput | FeatureUncheckedCreateWithoutPackagesInput[] No
connectOrCreate FeatureCreateOrConnectWithoutPackagesInput | FeatureCreateOrConnectWithoutPackagesInput[] No
upsert FeatureUpsertWithWhereUniqueWithoutPackagesInput | FeatureUpsertWithWhereUniqueWithoutPackagesInput[] No
set FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
disconnect FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
delete FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
connect FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
update FeatureUpdateWithWhereUniqueWithoutPackagesInput | FeatureUpdateWithWhereUniqueWithoutPackagesInput[] No
updateMany FeatureUpdateManyWithWhereWithoutPackagesInput | FeatureUpdateManyWithWhereWithoutPackagesInput[] No
deleteMany FeatureScalarWhereInput | FeatureScalarWhereInput[] No

PromotionUncheckedUpdateManyWithoutPackagesNestedInput

Name Type Nullable
create PromotionCreateWithoutPackagesInput | PromotionCreateWithoutPackagesInput[] | PromotionUncheckedCreateWithoutPackagesInput | PromotionUncheckedCreateWithoutPackagesInput[] No
connectOrCreate PromotionCreateOrConnectWithoutPackagesInput | PromotionCreateOrConnectWithoutPackagesInput[] No
upsert PromotionUpsertWithWhereUniqueWithoutPackagesInput | PromotionUpsertWithWhereUniqueWithoutPackagesInput[] No
set PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
disconnect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
delete PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
connect PromotionWhereUniqueInput | PromotionWhereUniqueInput[] No
update PromotionUpdateWithWhereUniqueWithoutPackagesInput | PromotionUpdateWithWhereUniqueWithoutPackagesInput[] No
updateMany PromotionUpdateManyWithWhereWithoutPackagesInput | PromotionUpdateManyWithWhereWithoutPackagesInput[] No
deleteMany PromotionScalarWhereInput | PromotionScalarWhereInput[] No

PaymentUncheckedUpdateManyWithoutPackageNestedInput

Name Type Nullable
create PaymentCreateWithoutPackageInput | PaymentCreateWithoutPackageInput[] | PaymentUncheckedCreateWithoutPackageInput | PaymentUncheckedCreateWithoutPackageInput[] No
connectOrCreate PaymentCreateOrConnectWithoutPackageInput | PaymentCreateOrConnectWithoutPackageInput[] No
upsert PaymentUpsertWithWhereUniqueWithoutPackageInput | PaymentUpsertWithWhereUniqueWithoutPackageInput[] No
createMany PaymentCreateManyPackageInputEnvelope No
set PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
disconnect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
delete PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
connect PaymentWhereUniqueInput | PaymentWhereUniqueInput[] No
update PaymentUpdateWithWhereUniqueWithoutPackageInput | PaymentUpdateWithWhereUniqueWithoutPackageInput[] No
updateMany PaymentUpdateManyWithWhereWithoutPackageInput | PaymentUpdateManyWithWhereWithoutPackageInput[] No
deleteMany PaymentScalarWhereInput | PaymentScalarWhereInput[] No

PackageCreateNestedOneWithoutPricesInput

Name Type Nullable
create PackageCreateWithoutPricesInput | PackageUncheckedCreateWithoutPricesInput No
connectOrCreate PackageCreateOrConnectWithoutPricesInput No
connect PackageWhereUniqueInput No

FloatFieldUpdateOperationsInput

Name Type Nullable
set Float No
increment Float No
decrement Float No
multiply Float No
divide Float No

NullableFloatFieldUpdateOperationsInput

Name Type Nullable
set Float | Null Yes
increment Float No
decrement Float No
multiply Float No
divide Float No






UserCreateNestedOneWithoutPromotionInput

Name Type Nullable
create UserCreateWithoutPromotionInput | UserUncheckedCreateWithoutPromotionInput No
connectOrCreate UserCreateOrConnectWithoutPromotionInput No
connect UserWhereUniqueInput No





FeatureUpdateManyWithoutPromotionsNestedInput

Name Type Nullable
create FeatureCreateWithoutPromotionsInput | FeatureCreateWithoutPromotionsInput[] | FeatureUncheckedCreateWithoutPromotionsInput | FeatureUncheckedCreateWithoutPromotionsInput[] No
connectOrCreate FeatureCreateOrConnectWithoutPromotionsInput | FeatureCreateOrConnectWithoutPromotionsInput[] No
upsert FeatureUpsertWithWhereUniqueWithoutPromotionsInput | FeatureUpsertWithWhereUniqueWithoutPromotionsInput[] No
set FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
disconnect FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
delete FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
connect FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
update FeatureUpdateWithWhereUniqueWithoutPromotionsInput | FeatureUpdateWithWhereUniqueWithoutPromotionsInput[] No
updateMany FeatureUpdateManyWithWhereWithoutPromotionsInput | FeatureUpdateManyWithWhereWithoutPromotionsInput[] No
deleteMany FeatureScalarWhereInput | FeatureScalarWhereInput[] No

IndustryUpdateManyWithoutPromotionsNestedInput

Name Type Nullable
create IndustryCreateWithoutPromotionsInput | IndustryCreateWithoutPromotionsInput[] | IndustryUncheckedCreateWithoutPromotionsInput | IndustryUncheckedCreateWithoutPromotionsInput[] No
connectOrCreate IndustryCreateOrConnectWithoutPromotionsInput | IndustryCreateOrConnectWithoutPromotionsInput[] No
upsert IndustryUpsertWithWhereUniqueWithoutPromotionsInput | IndustryUpsertWithWhereUniqueWithoutPromotionsInput[] No
set IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
disconnect IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
delete IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
connect IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
update IndustryUpdateWithWhereUniqueWithoutPromotionsInput | IndustryUpdateWithWhereUniqueWithoutPromotionsInput[] No
updateMany IndustryUpdateManyWithWhereWithoutPromotionsInput | IndustryUpdateManyWithWhereWithoutPromotionsInput[] No
deleteMany IndustryScalarWhereInput | IndustryScalarWhereInput[] No

CountryUpdateManyWithoutPromotionsNestedInput

Name Type Nullable
create CountryCreateWithoutPromotionsInput | CountryCreateWithoutPromotionsInput[] | CountryUncheckedCreateWithoutPromotionsInput | CountryUncheckedCreateWithoutPromotionsInput[] No
connectOrCreate CountryCreateOrConnectWithoutPromotionsInput | CountryCreateOrConnectWithoutPromotionsInput[] No
upsert CountryUpsertWithWhereUniqueWithoutPromotionsInput | CountryUpsertWithWhereUniqueWithoutPromotionsInput[] No
set CountryWhereUniqueInput | CountryWhereUniqueInput[] No
disconnect CountryWhereUniqueInput | CountryWhereUniqueInput[] No
delete CountryWhereUniqueInput | CountryWhereUniqueInput[] No
connect CountryWhereUniqueInput | CountryWhereUniqueInput[] No
update CountryUpdateWithWhereUniqueWithoutPromotionsInput | CountryUpdateWithWhereUniqueWithoutPromotionsInput[] No
updateMany CountryUpdateManyWithWhereWithoutPromotionsInput | CountryUpdateManyWithWhereWithoutPromotionsInput[] No
deleteMany CountryScalarWhereInput | CountryScalarWhereInput[] No

PackageUpdateManyWithoutPromotionsNestedInput

Name Type Nullable
create PackageCreateWithoutPromotionsInput | PackageCreateWithoutPromotionsInput[] | PackageUncheckedCreateWithoutPromotionsInput | PackageUncheckedCreateWithoutPromotionsInput[] No
connectOrCreate PackageCreateOrConnectWithoutPromotionsInput | PackageCreateOrConnectWithoutPromotionsInput[] No
upsert PackageUpsertWithWhereUniqueWithoutPromotionsInput | PackageUpsertWithWhereUniqueWithoutPromotionsInput[] No
set PackageWhereUniqueInput | PackageWhereUniqueInput[] No
disconnect PackageWhereUniqueInput | PackageWhereUniqueInput[] No
delete PackageWhereUniqueInput | PackageWhereUniqueInput[] No
connect PackageWhereUniqueInput | PackageWhereUniqueInput[] No
update PackageUpdateWithWhereUniqueWithoutPromotionsInput | PackageUpdateWithWhereUniqueWithoutPromotionsInput[] No
updateMany PackageUpdateManyWithWhereWithoutPromotionsInput | PackageUpdateManyWithWhereWithoutPromotionsInput[] No
deleteMany PackageScalarWhereInput | PackageScalarWhereInput[] No


FeatureUncheckedUpdateManyWithoutPromotionsNestedInput

Name Type Nullable
create FeatureCreateWithoutPromotionsInput | FeatureCreateWithoutPromotionsInput[] | FeatureUncheckedCreateWithoutPromotionsInput | FeatureUncheckedCreateWithoutPromotionsInput[] No
connectOrCreate FeatureCreateOrConnectWithoutPromotionsInput | FeatureCreateOrConnectWithoutPromotionsInput[] No
upsert FeatureUpsertWithWhereUniqueWithoutPromotionsInput | FeatureUpsertWithWhereUniqueWithoutPromotionsInput[] No
set FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
disconnect FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
delete FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
connect FeatureWhereUniqueInput | FeatureWhereUniqueInput[] No
update FeatureUpdateWithWhereUniqueWithoutPromotionsInput | FeatureUpdateWithWhereUniqueWithoutPromotionsInput[] No
updateMany FeatureUpdateManyWithWhereWithoutPromotionsInput | FeatureUpdateManyWithWhereWithoutPromotionsInput[] No
deleteMany FeatureScalarWhereInput | FeatureScalarWhereInput[] No

IndustryUncheckedUpdateManyWithoutPromotionsNestedInput

Name Type Nullable
create IndustryCreateWithoutPromotionsInput | IndustryCreateWithoutPromotionsInput[] | IndustryUncheckedCreateWithoutPromotionsInput | IndustryUncheckedCreateWithoutPromotionsInput[] No
connectOrCreate IndustryCreateOrConnectWithoutPromotionsInput | IndustryCreateOrConnectWithoutPromotionsInput[] No
upsert IndustryUpsertWithWhereUniqueWithoutPromotionsInput | IndustryUpsertWithWhereUniqueWithoutPromotionsInput[] No
set IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
disconnect IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
delete IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
connect IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
update IndustryUpdateWithWhereUniqueWithoutPromotionsInput | IndustryUpdateWithWhereUniqueWithoutPromotionsInput[] No
updateMany IndustryUpdateManyWithWhereWithoutPromotionsInput | IndustryUpdateManyWithWhereWithoutPromotionsInput[] No
deleteMany IndustryScalarWhereInput | IndustryScalarWhereInput[] No

CountryUncheckedUpdateManyWithoutPromotionsNestedInput

Name Type Nullable
create CountryCreateWithoutPromotionsInput | CountryCreateWithoutPromotionsInput[] | CountryUncheckedCreateWithoutPromotionsInput | CountryUncheckedCreateWithoutPromotionsInput[] No
connectOrCreate CountryCreateOrConnectWithoutPromotionsInput | CountryCreateOrConnectWithoutPromotionsInput[] No
upsert CountryUpsertWithWhereUniqueWithoutPromotionsInput | CountryUpsertWithWhereUniqueWithoutPromotionsInput[] No
set CountryWhereUniqueInput | CountryWhereUniqueInput[] No
disconnect CountryWhereUniqueInput | CountryWhereUniqueInput[] No
delete CountryWhereUniqueInput | CountryWhereUniqueInput[] No
connect CountryWhereUniqueInput | CountryWhereUniqueInput[] No
update CountryUpdateWithWhereUniqueWithoutPromotionsInput | CountryUpdateWithWhereUniqueWithoutPromotionsInput[] No
updateMany CountryUpdateManyWithWhereWithoutPromotionsInput | CountryUpdateManyWithWhereWithoutPromotionsInput[] No
deleteMany CountryScalarWhereInput | CountryScalarWhereInput[] No

PackageUncheckedUpdateManyWithoutPromotionsNestedInput

Name Type Nullable
create PackageCreateWithoutPromotionsInput | PackageCreateWithoutPromotionsInput[] | PackageUncheckedCreateWithoutPromotionsInput | PackageUncheckedCreateWithoutPromotionsInput[] No
connectOrCreate PackageCreateOrConnectWithoutPromotionsInput | PackageCreateOrConnectWithoutPromotionsInput[] No
upsert PackageUpsertWithWhereUniqueWithoutPromotionsInput | PackageUpsertWithWhereUniqueWithoutPromotionsInput[] No
set PackageWhereUniqueInput | PackageWhereUniqueInput[] No
disconnect PackageWhereUniqueInput | PackageWhereUniqueInput[] No
delete PackageWhereUniqueInput | PackageWhereUniqueInput[] No
connect PackageWhereUniqueInput | PackageWhereUniqueInput[] No
update PackageUpdateWithWhereUniqueWithoutPromotionsInput | PackageUpdateWithWhereUniqueWithoutPromotionsInput[] No
updateMany PackageUpdateManyWithWhereWithoutPromotionsInput | PackageUpdateManyWithWhereWithoutPromotionsInput[] No
deleteMany PackageScalarWhereInput | PackageScalarWhereInput[] No

PackageCreateNestedOneWithoutPaymentInput

Name Type Nullable
create PackageCreateWithoutPaymentInput | PackageUncheckedCreateWithoutPaymentInput No
connectOrCreate PackageCreateOrConnectWithoutPaymentInput No
connect PackageWhereUniqueInput No

UserCreateNestedOneWithoutPaymentInput

Name Type Nullable
create UserCreateWithoutPaymentInput | UserUncheckedCreateWithoutPaymentInput No
connectOrCreate UserCreateOrConnectWithoutPaymentInput No
connect UserWhereUniqueInput No

DecimalFieldUpdateOperationsInput

Name Type Nullable
set Decimal No
increment Decimal No
decrement Decimal No
multiply Decimal No
divide Decimal No







IndustryUpdateManyWithoutCategoriesNestedInput

Name Type Nullable
create IndustryCreateWithoutCategoriesInput | IndustryCreateWithoutCategoriesInput[] | IndustryUncheckedCreateWithoutCategoriesInput | IndustryUncheckedCreateWithoutCategoriesInput[] No
connectOrCreate IndustryCreateOrConnectWithoutCategoriesInput | IndustryCreateOrConnectWithoutCategoriesInput[] No
upsert IndustryUpsertWithWhereUniqueWithoutCategoriesInput | IndustryUpsertWithWhereUniqueWithoutCategoriesInput[] No
set IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
disconnect IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
delete IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
connect IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
update IndustryUpdateWithWhereUniqueWithoutCategoriesInput | IndustryUpdateWithWhereUniqueWithoutCategoriesInput[] No
updateMany IndustryUpdateManyWithWhereWithoutCategoriesInput | IndustryUpdateManyWithWhereWithoutCategoriesInput[] No
deleteMany IndustryScalarWhereInput | IndustryScalarWhereInput[] No

BrandTemplateUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create BrandTemplateCreateWithoutCategoryInput | BrandTemplateCreateWithoutCategoryInput[] | BrandTemplateUncheckedCreateWithoutCategoryInput | BrandTemplateUncheckedCreateWithoutCategoryInput[] No
connectOrCreate BrandTemplateCreateOrConnectWithoutCategoryInput | BrandTemplateCreateOrConnectWithoutCategoryInput[] No
upsert BrandTemplateUpsertWithWhereUniqueWithoutCategoryInput | BrandTemplateUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany BrandTemplateCreateManyCategoryInputEnvelope No
set BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
disconnect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
delete BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
connect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
update BrandTemplateUpdateWithWhereUniqueWithoutCategoryInput | BrandTemplateUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany BrandTemplateUpdateManyWithWhereWithoutCategoryInput | BrandTemplateUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany BrandTemplateScalarWhereInput | BrandTemplateScalarWhereInput[] No

IndustryUncheckedUpdateManyWithoutCategoriesNestedInput

Name Type Nullable
create IndustryCreateWithoutCategoriesInput | IndustryCreateWithoutCategoriesInput[] | IndustryUncheckedCreateWithoutCategoriesInput | IndustryUncheckedCreateWithoutCategoriesInput[] No
connectOrCreate IndustryCreateOrConnectWithoutCategoriesInput | IndustryCreateOrConnectWithoutCategoriesInput[] No
upsert IndustryUpsertWithWhereUniqueWithoutCategoriesInput | IndustryUpsertWithWhereUniqueWithoutCategoriesInput[] No
set IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
disconnect IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
delete IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
connect IndustryWhereUniqueInput | IndustryWhereUniqueInput[] No
update IndustryUpdateWithWhereUniqueWithoutCategoriesInput | IndustryUpdateWithWhereUniqueWithoutCategoriesInput[] No
updateMany IndustryUpdateManyWithWhereWithoutCategoriesInput | IndustryUpdateManyWithWhereWithoutCategoriesInput[] No
deleteMany IndustryScalarWhereInput | IndustryScalarWhereInput[] No

BrandTemplateUncheckedUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create BrandTemplateCreateWithoutCategoryInput | BrandTemplateCreateWithoutCategoryInput[] | BrandTemplateUncheckedCreateWithoutCategoryInput | BrandTemplateUncheckedCreateWithoutCategoryInput[] No
connectOrCreate BrandTemplateCreateOrConnectWithoutCategoryInput | BrandTemplateCreateOrConnectWithoutCategoryInput[] No
upsert BrandTemplateUpsertWithWhereUniqueWithoutCategoryInput | BrandTemplateUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany BrandTemplateCreateManyCategoryInputEnvelope No
set BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
disconnect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
delete BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
connect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
update BrandTemplateUpdateWithWhereUniqueWithoutCategoryInput | BrandTemplateUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany BrandTemplateUpdateManyWithWhereWithoutCategoryInput | BrandTemplateUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany BrandTemplateScalarWhereInput | BrandTemplateScalarWhereInput[] No



EnumImageSideFieldUpdateOperationsInput

Name Type Nullable
set ImageSide No

BrandTemplateUpdateManyWithoutImageNestedInput

Name Type Nullable
create BrandTemplateCreateWithoutImageInput | BrandTemplateCreateWithoutImageInput[] | BrandTemplateUncheckedCreateWithoutImageInput | BrandTemplateUncheckedCreateWithoutImageInput[] No
connectOrCreate BrandTemplateCreateOrConnectWithoutImageInput | BrandTemplateCreateOrConnectWithoutImageInput[] No
upsert BrandTemplateUpsertWithWhereUniqueWithoutImageInput | BrandTemplateUpsertWithWhereUniqueWithoutImageInput[] No
createMany BrandTemplateCreateManyImageInputEnvelope No
set BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
disconnect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
delete BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
connect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
update BrandTemplateUpdateWithWhereUniqueWithoutImageInput | BrandTemplateUpdateWithWhereUniqueWithoutImageInput[] No
updateMany BrandTemplateUpdateManyWithWhereWithoutImageInput | BrandTemplateUpdateManyWithWhereWithoutImageInput[] No
deleteMany BrandTemplateScalarWhereInput | BrandTemplateScalarWhereInput[] No

BrandTemplateUncheckedUpdateManyWithoutImageNestedInput

Name Type Nullable
create BrandTemplateCreateWithoutImageInput | BrandTemplateCreateWithoutImageInput[] | BrandTemplateUncheckedCreateWithoutImageInput | BrandTemplateUncheckedCreateWithoutImageInput[] No
connectOrCreate BrandTemplateCreateOrConnectWithoutImageInput | BrandTemplateCreateOrConnectWithoutImageInput[] No
upsert BrandTemplateUpsertWithWhereUniqueWithoutImageInput | BrandTemplateUpsertWithWhereUniqueWithoutImageInput[] No
createMany BrandTemplateCreateManyImageInputEnvelope No
set BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
disconnect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
delete BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
connect BrandTemplateWhereUniqueInput | BrandTemplateWhereUniqueInput[] No
update BrandTemplateUpdateWithWhereUniqueWithoutImageInput | BrandTemplateUpdateWithWhereUniqueWithoutImageInput[] No
updateMany BrandTemplateUpdateManyWithWhereWithoutImageInput | BrandTemplateUpdateManyWithWhereWithoutImageInput[] No
deleteMany BrandTemplateScalarWhereInput | BrandTemplateScalarWhereInput[] No

UserCreateNestedOneWithoutClientEditsInput

Name Type Nullable
create UserCreateWithoutClientEditsInput | UserUncheckedCreateWithoutClientEditsInput No
connectOrCreate UserCreateOrConnectWithoutClientEditsInput No
connect UserWhereUniqueInput No

BrandTemplateCreateNestedOneWithoutClient_editsInput

Name Type Nullable
create BrandTemplateCreateWithoutClient_editsInput | BrandTemplateUncheckedCreateWithoutClient_editsInput No
connectOrCreate BrandTemplateCreateOrConnectWithoutClient_editsInput No
connect BrandTemplateWhereUniqueInput No

EnumClientEditActionFieldUpdateOperationsInput

Name Type Nullable
set ClientEditAction No





BrandTemplateCreateNestedOneWithoutTelNumbersInput

Name Type Nullable
create BrandTemplateCreateWithoutTelNumbersInput | BrandTemplateUncheckedCreateWithoutTelNumbersInput No
connectOrCreate BrandTemplateCreateOrConnectWithoutTelNumbersInput No
connect BrandTemplateWhereUniqueInput No


BrandTemplateCreatetagsInput

Name Type Nullable
set String No

BrandTemplateCreatesizesInput

Name Type Nullable
set String No

BrandTemplateCreateunitsInput

Name Type Nullable
set String No

BrandTemplateCreateaddon_categoriesInput

Name Type Nullable
set String No

BrandTemplateCreatevarietiesInput

Name Type Nullable
set String No

ImageCreateNestedOneWithoutBrandTemplateInput

Name Type Nullable
create ImageCreateWithoutBrandTemplateInput | ImageUncheckedCreateWithoutBrandTemplateInput No
connectOrCreate ImageCreateOrConnectWithoutBrandTemplateInput No
connect ImageWhereUniqueInput No

CategoryCreateNestedOneWithoutBrandTemplateInput

Name Type Nullable
create CategoryCreateWithoutBrandTemplateInput | CategoryUncheckedCreateWithoutBrandTemplateInput No
connectOrCreate CategoryCreateOrConnectWithoutBrandTemplateInput No
connect CategoryWhereUniqueInput No

CountryCreateNestedOneWithoutBrandTemplateInput

Name Type Nullable
create CountryCreateWithoutBrandTemplateInput | CountryUncheckedCreateWithoutBrandTemplateInput No
connectOrCreate CountryCreateOrConnectWithoutBrandTemplateInput No
connect CountryWhereUniqueInput No


UserCreateNestedOneWithoutCreatedTemplatesInput

Name Type Nullable
create UserCreateWithoutCreatedTemplatesInput | UserUncheckedCreateWithoutCreatedTemplatesInput No
connectOrCreate UserCreateOrConnectWithoutCreatedTemplatesInput No
connect UserWhereUniqueInput No

UserCreateNestedOneWithoutReviewedTemplatesInput

Name Type Nullable
create UserCreateWithoutReviewedTemplatesInput | UserUncheckedCreateWithoutReviewedTemplatesInput No
connectOrCreate UserCreateOrConnectWithoutReviewedTemplatesInput No
connect UserWhereUniqueInput No






BrandTemplateUpdatetagsInput

Name Type Nullable
set String No
push String | String No

BrandTemplateUpdatesizesInput

Name Type Nullable
set String No
push String | String No

BrandTemplateUpdateunitsInput

Name Type Nullable
set String No
push String | String No

BrandTemplateUpdateaddon_categoriesInput

Name Type Nullable
set String No
push String | String No

BrandTemplateUpdatevarietiesInput

Name Type Nullable
set String No
push String | String No




TelUpdateManyWithoutBrandTemplateNestedInput

Name Type Nullable
create TelCreateWithoutBrandTemplateInput | TelCreateWithoutBrandTemplateInput[] | TelUncheckedCreateWithoutBrandTemplateInput | TelUncheckedCreateWithoutBrandTemplateInput[] No
connectOrCreate TelCreateOrConnectWithoutBrandTemplateInput | TelCreateOrConnectWithoutBrandTemplateInput[] No
upsert TelUpsertWithWhereUniqueWithoutBrandTemplateInput | TelUpsertWithWhereUniqueWithoutBrandTemplateInput[] No
createMany TelCreateManyBrandTemplateInputEnvelope No
set TelWhereUniqueInput | TelWhereUniqueInput[] No
disconnect TelWhereUniqueInput | TelWhereUniqueInput[] No
delete TelWhereUniqueInput | TelWhereUniqueInput[] No
connect TelWhereUniqueInput | TelWhereUniqueInput[] No
update TelUpdateWithWhereUniqueWithoutBrandTemplateInput | TelUpdateWithWhereUniqueWithoutBrandTemplateInput[] No
updateMany TelUpdateManyWithWhereWithoutBrandTemplateInput | TelUpdateManyWithWhereWithoutBrandTemplateInput[] No
deleteMany TelScalarWhereInput | TelScalarWhereInput[] No



ClientEditUpdateManyWithoutBrandTemplateNestedInput

Name Type Nullable
create ClientEditCreateWithoutBrandTemplateInput | ClientEditCreateWithoutBrandTemplateInput[] | ClientEditUncheckedCreateWithoutBrandTemplateInput | ClientEditUncheckedCreateWithoutBrandTemplateInput[] No
connectOrCreate ClientEditCreateOrConnectWithoutBrandTemplateInput | ClientEditCreateOrConnectWithoutBrandTemplateInput[] No
upsert ClientEditUpsertWithWhereUniqueWithoutBrandTemplateInput | ClientEditUpsertWithWhereUniqueWithoutBrandTemplateInput[] No
createMany ClientEditCreateManyBrandTemplateInputEnvelope No
set ClientEditWhereUniqueInput | ClientEditWhereUniqueInput[] No
disconnect ClientEditWhereUniqueInput | ClientEditWhereUniqueInput[] No
delete ClientEditWhereUniqueInput | ClientEditWhereUniqueInput[] No
connect ClientEditWhereUniqueInput | ClientEditWhereUniqueInput[] No
update ClientEditUpdateWithWhereUniqueWithoutBrandTemplateInput | ClientEditUpdateWithWhereUniqueWithoutBrandTemplateInput[] No
updateMany ClientEditUpdateManyWithWhereWithoutBrandTemplateInput | ClientEditUpdateManyWithWhereWithoutBrandTemplateInput[] No
deleteMany ClientEditScalarWhereInput | ClientEditScalarWhereInput[] No

ClientRatingUpdateManyWithoutBrandTemplateNestedInput

Name Type Nullable
create ClientRatingCreateWithoutBrandTemplateInput | ClientRatingCreateWithoutBrandTemplateInput[] | ClientRatingUncheckedCreateWithoutBrandTemplateInput | ClientRatingUncheckedCreateWithoutBrandTemplateInput[] No
connectOrCreate ClientRatingCreateOrConnectWithoutBrandTemplateInput | ClientRatingCreateOrConnectWithoutBrandTemplateInput[] No
upsert ClientRatingUpsertWithWhereUniqueWithoutBrandTemplateInput | ClientRatingUpsertWithWhereUniqueWithoutBrandTemplateInput[] No
createMany ClientRatingCreateManyBrandTemplateInputEnvelope No
set ClientRatingWhereUniqueInput | ClientRatingWhereUniqueInput[] No
disconnect ClientRatingWhereUniqueInput | ClientRatingWhereUniqueInput[] No
delete ClientRatingWhereUniqueInput | ClientRatingWhereUniqueInput[] No
connect ClientRatingWhereUniqueInput | ClientRatingWhereUniqueInput[] No
update ClientRatingUpdateWithWhereUniqueWithoutBrandTemplateInput | ClientRatingUpdateWithWhereUniqueWithoutBrandTemplateInput[] No
updateMany ClientRatingUpdateManyWithWhereWithoutBrandTemplateInput | ClientRatingUpdateManyWithWhereWithoutBrandTemplateInput[] No
deleteMany ClientRatingScalarWhereInput | ClientRatingScalarWhereInput[] No

TelUncheckedUpdateManyWithoutBrandTemplateNestedInput

Name Type Nullable
create TelCreateWithoutBrandTemplateInput | TelCreateWithoutBrandTemplateInput[] | TelUncheckedCreateWithoutBrandTemplateInput | TelUncheckedCreateWithoutBrandTemplateInput[] No
connectOrCreate TelCreateOrConnectWithoutBrandTemplateInput | TelCreateOrConnectWithoutBrandTemplateInput[] No
upsert TelUpsertWithWhereUniqueWithoutBrandTemplateInput | TelUpsertWithWhereUniqueWithoutBrandTemplateInput[] No
createMany TelCreateManyBrandTemplateInputEnvelope No
set TelWhereUniqueInput | TelWhereUniqueInput[] No
disconnect TelWhereUniqueInput | TelWhereUniqueInput[] No
delete TelWhereUniqueInput | TelWhereUniqueInput[] No
connect TelWhereUniqueInput | TelWhereUniqueInput[] No
update TelUpdateWithWhereUniqueWithoutBrandTemplateInput | TelUpdateWithWhereUniqueWithoutBrandTemplateInput[] No
updateMany TelUpdateManyWithWhereWithoutBrandTemplateInput | TelUpdateManyWithWhereWithoutBrandTemplateInput[] No
deleteMany TelScalarWhereInput | TelScalarWhereInput[] No

ClientEditUncheckedUpdateManyWithoutBrandTemplateNestedInput

Name Type Nullable
create ClientEditCreateWithoutBrandTemplateInput | ClientEditCreateWithoutBrandTemplateInput[] | ClientEditUncheckedCreateWithoutBrandTemplateInput | ClientEditUncheckedCreateWithoutBrandTemplateInput[] No
connectOrCreate ClientEditCreateOrConnectWithoutBrandTemplateInput | ClientEditCreateOrConnectWithoutBrandTemplateInput[] No
upsert ClientEditUpsertWithWhereUniqueWithoutBrandTemplateInput | ClientEditUpsertWithWhereUniqueWithoutBrandTemplateInput[] No
createMany ClientEditCreateManyBrandTemplateInputEnvelope No
set ClientEditWhereUniqueInput | ClientEditWhereUniqueInput[] No
disconnect ClientEditWhereUniqueInput | ClientEditWhereUniqueInput[] No
delete ClientEditWhereUniqueInput | ClientEditWhereUniqueInput[] No
connect ClientEditWhereUniqueInput | ClientEditWhereUniqueInput[] No
update ClientEditUpdateWithWhereUniqueWithoutBrandTemplateInput | ClientEditUpdateWithWhereUniqueWithoutBrandTemplateInput[] No
updateMany ClientEditUpdateManyWithWhereWithoutBrandTemplateInput | ClientEditUpdateManyWithWhereWithoutBrandTemplateInput[] No
deleteMany ClientEditScalarWhereInput | ClientEditScalarWhereInput[] No

ClientRatingUncheckedUpdateManyWithoutBrandTemplateNestedInput

Name Type Nullable
create ClientRatingCreateWithoutBrandTemplateInput | ClientRatingCreateWithoutBrandTemplateInput[] | ClientRatingUncheckedCreateWithoutBrandTemplateInput | ClientRatingUncheckedCreateWithoutBrandTemplateInput[] No
connectOrCreate ClientRatingCreateOrConnectWithoutBrandTemplateInput | ClientRatingCreateOrConnectWithoutBrandTemplateInput[] No
upsert ClientRatingUpsertWithWhereUniqueWithoutBrandTemplateInput | ClientRatingUpsertWithWhereUniqueWithoutBrandTemplateInput[] No
createMany ClientRatingCreateManyBrandTemplateInputEnvelope No
set ClientRatingWhereUniqueInput | ClientRatingWhereUniqueInput[] No
disconnect ClientRatingWhereUniqueInput | ClientRatingWhereUniqueInput[] No
delete ClientRatingWhereUniqueInput | ClientRatingWhereUniqueInput[] No
connect ClientRatingWhereUniqueInput | ClientRatingWhereUniqueInput[] No
update ClientRatingUpdateWithWhereUniqueWithoutBrandTemplateInput | ClientRatingUpdateWithWhereUniqueWithoutBrandTemplateInput[] No
updateMany ClientRatingUpdateManyWithWhereWithoutBrandTemplateInput | ClientRatingUpdateManyWithWhereWithoutBrandTemplateInput[] No
deleteMany ClientRatingScalarWhereInput | ClientRatingScalarWhereInput[] No

NestedStringFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringFilter No

NestedStringWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput No
in String | ListStringFieldRefInput No
notIn String | ListStringFieldRefInput No
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

NestedIntFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntFilter No

NestedStringNullableFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringNullableFilter | Null Yes

NestedStringNullableWithAggregatesFilter

Name Type Nullable
equals String | StringFieldRefInput | Null Yes
in String | ListStringFieldRefInput | Null Yes
notIn String | ListStringFieldRefInput | Null Yes
lt String | StringFieldRefInput No
lte String | StringFieldRefInput No
gt String | StringFieldRefInput No
gte String | StringFieldRefInput No
contains String | StringFieldRefInput No
startsWith String | StringFieldRefInput No
endsWith String | StringFieldRefInput No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

NestedIntNullableFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableFilter | Null Yes



NestedDateTimeNullableFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableFilter | Null Yes

NestedEnumUserStatusNullableFilter

Name Type Nullable
equals UserStatus | EnumUserStatusFieldRefInput | Null Yes
in UserStatus[] | ListEnumUserStatusFieldRefInput | Null Yes
notIn UserStatus[] | ListEnumUserStatusFieldRefInput | Null Yes
not UserStatus | NestedEnumUserStatusNullableFilter | Null Yes

NestedDateTimeFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeFilter No

NestedDateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput | Null Yes
in DateTime | ListDateTimeFieldRefInput | Null Yes
notIn DateTime | ListDateTimeFieldRefInput | Null Yes
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No


NestedIntNullableWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput | Null Yes
in Int | ListIntFieldRefInput | Null Yes
notIn Int | ListIntFieldRefInput | Null Yes
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

NestedFloatNullableFilter

Name Type Nullable
equals Float | FloatFieldRefInput | Null Yes
in Float | ListFloatFieldRefInput | Null Yes
notIn Float | ListFloatFieldRefInput | Null Yes
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatNullableFilter | Null Yes

NestedDateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime | DateTimeFieldRefInput No
in DateTime | ListDateTimeFieldRefInput No
notIn DateTime | ListDateTimeFieldRefInput No
lt DateTime | DateTimeFieldRefInput No
lte DateTime | DateTimeFieldRefInput No
gt DateTime | DateTimeFieldRefInput No
gte DateTime | DateTimeFieldRefInput No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

NestedBoolNullableFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput | Null Yes
not Boolean | NestedBoolNullableFilter | Null Yes

NestedBoolNullableWithAggregatesFilter

Name Type Nullable
equals Boolean | BooleanFieldRefInput | Null Yes
not Boolean | NestedBoolNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedBoolNullableFilter No
_max NestedBoolNullableFilter No

NestedEnumTaskPriorityNullableFilter

Name Type Nullable
equals TaskPriority | EnumTaskPriorityFieldRefInput | Null Yes
in TaskPriority[] | ListEnumTaskPriorityFieldRefInput | Null Yes
notIn TaskPriority[] | ListEnumTaskPriorityFieldRefInput | Null Yes
not TaskPriority | NestedEnumTaskPriorityNullableFilter | Null Yes

NestedEnumTaskStageNullableFilter

Name Type Nullable
equals TaskStage | EnumTaskStageFieldRefInput | Null Yes
in TaskStage[] | ListEnumTaskStageFieldRefInput | Null Yes
notIn TaskStage[] | ListEnumTaskStageFieldRefInput | Null Yes
not TaskStage | NestedEnumTaskStageNullableFilter | Null Yes


NestedEnumTaskStageNullableWithAggregatesFilter

Name Type Nullable
equals TaskStage | EnumTaskStageFieldRefInput | Null Yes
in TaskStage[] | ListEnumTaskStageFieldRefInput | Null Yes
notIn TaskStage[] | ListEnumTaskStageFieldRefInput | Null Yes
not TaskStage | NestedEnumTaskStageNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumTaskStageNullableFilter No
_max NestedEnumTaskStageNullableFilter No



NestedIntWithAggregatesFilter

Name Type Nullable
equals Int | IntFieldRefInput No
in Int | ListIntFieldRefInput No
notIn Int | ListIntFieldRefInput No
lt Int | IntFieldRefInput No
lte Int | IntFieldRefInput No
gt Int | IntFieldRefInput No
gte Int | IntFieldRefInput No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

NestedFloatFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float | ListFloatFieldRefInput No
notIn Float | ListFloatFieldRefInput No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatFilter No

NestedFloatWithAggregatesFilter

Name Type Nullable
equals Float | FloatFieldRefInput No
in Float | ListFloatFieldRefInput No
notIn Float | ListFloatFieldRefInput No
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedFloatFilter No
_min NestedFloatFilter No
_max NestedFloatFilter No

NestedFloatNullableWithAggregatesFilter

Name Type Nullable
equals Float | FloatFieldRefInput | Null Yes
in Float | ListFloatFieldRefInput | Null Yes
notIn Float | ListFloatFieldRefInput | Null Yes
lt Float | FloatFieldRefInput No
lte Float | FloatFieldRefInput No
gt Float | FloatFieldRefInput No
gte Float | FloatFieldRefInput No
not Float | NestedFloatNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedFloatNullableFilter No
_min NestedFloatNullableFilter No
_max NestedFloatNullableFilter No







PromotionCreateWithoutIndustriesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
startDate DateTime No
endDate DateTime No
createdAt DateTime No
features FeatureCreateNestedManyWithoutPromotionsInput No
countries CountryCreateNestedManyWithoutPromotionsInput No
packages PackageCreateNestedManyWithoutPromotionsInput No
createdBy UserCreateNestedOneWithoutPromotionInput No

PromotionUncheckedCreateWithoutIndustriesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
startDate DateTime No
endDate DateTime No
createdById String | Null Yes
createdAt DateTime No
features FeatureUncheckedCreateNestedManyWithoutPromotionsInput No
countries CountryUncheckedCreateNestedManyWithoutPromotionsInput No
packages PackageUncheckedCreateNestedManyWithoutPromotionsInput No

PromotionCreateOrConnectWithoutIndustriesInput

Name Type Nullable
where PromotionWhereUniqueInput No
create PromotionCreateWithoutIndustriesInput | PromotionUncheckedCreateWithoutIndustriesInput No

CategoryCreateWithoutIndustriesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
icon String | Null Yes
createdBy String | Null Yes
createdAt DateTime No
brandTemplate BrandTemplateCreateNestedManyWithoutCategoryInput No

CategoryUncheckedCreateWithoutIndustriesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
icon String | Null Yes
createdBy String | Null Yes
createdAt DateTime No
brandTemplate BrandTemplateUncheckedCreateNestedManyWithoutCategoryInput No

CategoryCreateOrConnectWithoutIndustriesInput

Name Type Nullable
where CategoryWhereUniqueInput No
create CategoryCreateWithoutIndustriesInput | CategoryUncheckedCreateWithoutIndustriesInput No

FeatureCreateWithoutIndustriesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
type FeatureType No
countries CountryCreateNestedManyWithoutFeaturesInput No
promotions PromotionCreateNestedManyWithoutFeaturesInput No
packages PackageCreateNestedManyWithoutFeaturesInput No

FeatureUncheckedCreateWithoutIndustriesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
type FeatureType No
countries CountryUncheckedCreateNestedManyWithoutFeaturesInput No
promotions PromotionUncheckedCreateNestedManyWithoutFeaturesInput No
packages PackageUncheckedCreateNestedManyWithoutFeaturesInput No

FeatureCreateOrConnectWithoutIndustriesInput

Name Type Nullable
where FeatureWhereUniqueInput No
create FeatureCreateWithoutIndustriesInput | FeatureUncheckedCreateWithoutIndustriesInput No


PromotionUpdateWithWhereUniqueWithoutIndustriesInput

Name Type Nullable
where PromotionWhereUniqueInput No
data PromotionUpdateWithoutIndustriesInput | PromotionUncheckedUpdateWithoutIndustriesInput No

PromotionUpdateManyWithWhereWithoutIndustriesInput

Name Type Nullable
where PromotionScalarWhereInput No
data PromotionUpdateManyMutationInput | PromotionUncheckedUpdateManyWithoutIndustriesInput No

PromotionScalarWhereInput

Name Type Nullable
AND PromotionScalarWhereInput | PromotionScalarWhereInput[] No
OR PromotionScalarWhereInput[] No
NOT PromotionScalarWhereInput | PromotionScalarWhereInput[] No
id StringFilter | String No
name StringFilter | String No
description StringNullableFilter | String | Null Yes
startDate DateTimeFilter | DateTime No
endDate DateTimeFilter | DateTime No
createdById StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No


CategoryUpdateWithWhereUniqueWithoutIndustriesInput

Name Type Nullable
where CategoryWhereUniqueInput No
data CategoryUpdateWithoutIndustriesInput | CategoryUncheckedUpdateWithoutIndustriesInput No

CategoryUpdateManyWithWhereWithoutIndustriesInput

Name Type Nullable
where CategoryScalarWhereInput No
data CategoryUpdateManyMutationInput | CategoryUncheckedUpdateManyWithoutIndustriesInput No

CategoryScalarWhereInput

Name Type Nullable
AND CategoryScalarWhereInput | CategoryScalarWhereInput[] No
OR CategoryScalarWhereInput[] No
NOT CategoryScalarWhereInput | CategoryScalarWhereInput[] No
id StringFilter | String No
name StringFilter | String No
description StringNullableFilter | String | Null Yes
icon StringNullableFilter | String | Null Yes
createdBy StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No


FeatureUpdateWithWhereUniqueWithoutIndustriesInput

Name Type Nullable
where FeatureWhereUniqueInput No
data FeatureUpdateWithoutIndustriesInput | FeatureUncheckedUpdateWithoutIndustriesInput No

FeatureUpdateManyWithWhereWithoutIndustriesInput

Name Type Nullable
where FeatureScalarWhereInput No
data FeatureUpdateManyMutationInput | FeatureUncheckedUpdateManyWithoutIndustriesInput No

FeatureScalarWhereInput

Name Type Nullable
AND FeatureScalarWhereInput | FeatureScalarWhereInput[] No
OR FeatureScalarWhereInput[] No
NOT FeatureScalarWhereInput | FeatureScalarWhereInput[] No
id StringFilter | String No
name StringFilter | String No
description StringNullableFilter | String | Null Yes
type EnumFeatureTypeFilter | FeatureType No

UserCreateWithoutCountryInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
createdAt DateTime No
role RoleCreateNestedOneWithoutUserInput No
teams TeamCreateNestedManyWithoutUserInput No
assignedTasks TaskCreateNestedManyWithoutAssigneeInput No
createdTasks TaskCreateNestedManyWithoutCreatedByInput No
promotion PromotionCreateNestedManyWithoutCreatedByInput No
payment PaymentCreateNestedManyWithoutCashierInput No
createdTemplates BrandTemplateCreateNestedManyWithoutCreatedByInput No
reviewedTemplates BrandTemplateCreateNestedManyWithoutReviewerInput No
clientEdits ClientEditCreateNestedManyWithoutApprovedByInput No

UserUncheckedCreateWithoutCountryInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
roleId String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
createdAt DateTime No
teams TeamUncheckedCreateNestedManyWithoutUserInput No
assignedTasks TaskUncheckedCreateNestedManyWithoutAssigneeInput No
createdTasks TaskUncheckedCreateNestedManyWithoutCreatedByInput No
promotion PromotionUncheckedCreateNestedManyWithoutCreatedByInput No
payment PaymentUncheckedCreateNestedManyWithoutCashierInput No
createdTemplates BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput No
reviewedTemplates BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput No
clientEdits ClientEditUncheckedCreateNestedManyWithoutApprovedByInput No

UserCreateOrConnectWithoutCountryInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutCountryInput | UserUncheckedCreateWithoutCountryInput No

UserCreateManyCountryInputEnvelope

Name Type Nullable
data UserCreateManyCountryInput | UserCreateManyCountryInput[] No
skipDuplicates Boolean No

PromotionCreateWithoutCountriesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
startDate DateTime No
endDate DateTime No
createdAt DateTime No
features FeatureCreateNestedManyWithoutPromotionsInput No
industries IndustryCreateNestedManyWithoutPromotionsInput No
packages PackageCreateNestedManyWithoutPromotionsInput No
createdBy UserCreateNestedOneWithoutPromotionInput No

PromotionUncheckedCreateWithoutCountriesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
startDate DateTime No
endDate DateTime No
createdById String | Null Yes
createdAt DateTime No
features FeatureUncheckedCreateNestedManyWithoutPromotionsInput No
industries IndustryUncheckedCreateNestedManyWithoutPromotionsInput No
packages PackageUncheckedCreateNestedManyWithoutPromotionsInput No

PromotionCreateOrConnectWithoutCountriesInput

Name Type Nullable
where PromotionWhereUniqueInput No
create PromotionCreateWithoutCountriesInput | PromotionUncheckedCreateWithoutCountriesInput No

BrandTemplateCreateWithoutCountryInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes
image ImageCreateNestedOneWithoutBrandTemplateInput No
category CategoryCreateNestedOneWithoutBrandTemplateInput No
telNumbers TelCreateNestedManyWithoutBrandTemplateInput No
createdBy UserCreateNestedOneWithoutCreatedTemplatesInput No
reviewer UserCreateNestedOneWithoutReviewedTemplatesInput No
client_edits ClientEditCreateNestedManyWithoutBrandTemplateInput No
implementationRatings ClientRatingCreateNestedManyWithoutBrandTemplateInput No

BrandTemplateUncheckedCreateWithoutCountryInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
imageId String | Null Yes
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
categoryId String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdById String | Null Yes
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
reviewerId String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes
telNumbers TelUncheckedCreateNestedManyWithoutBrandTemplateInput No
client_edits ClientEditUncheckedCreateNestedManyWithoutBrandTemplateInput No
implementationRatings ClientRatingUncheckedCreateNestedManyWithoutBrandTemplateInput No

BrandTemplateCreateOrConnectWithoutCountryInput

Name Type Nullable
where BrandTemplateWhereUniqueInput No
create BrandTemplateCreateWithoutCountryInput | BrandTemplateUncheckedCreateWithoutCountryInput No

BrandTemplateCreateManyCountryInputEnvelope

Name Type Nullable
data BrandTemplateCreateManyCountryInput | BrandTemplateCreateManyCountryInput[] No
skipDuplicates Boolean No

FeatureCreateWithoutCountriesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
type FeatureType No
industries IndustryCreateNestedManyWithoutFeaturesInput No
promotions PromotionCreateNestedManyWithoutFeaturesInput No
packages PackageCreateNestedManyWithoutFeaturesInput No

FeatureUncheckedCreateWithoutCountriesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
type FeatureType No
industries IndustryUncheckedCreateNestedManyWithoutFeaturesInput No
promotions PromotionUncheckedCreateNestedManyWithoutFeaturesInput No
packages PackageUncheckedCreateNestedManyWithoutFeaturesInput No

FeatureCreateOrConnectWithoutCountriesInput

Name Type Nullable
where FeatureWhereUniqueInput No
create FeatureCreateWithoutCountriesInput | FeatureUncheckedCreateWithoutCountriesInput No

UserUpsertWithWhereUniqueWithoutCountryInput

Name Type Nullable
where UserWhereUniqueInput No
update UserUpdateWithoutCountryInput | UserUncheckedUpdateWithoutCountryInput No
create UserCreateWithoutCountryInput | UserUncheckedCreateWithoutCountryInput No

UserUpdateWithWhereUniqueWithoutCountryInput

Name Type Nullable
where UserWhereUniqueInput No
data UserUpdateWithoutCountryInput | UserUncheckedUpdateWithoutCountryInput No

UserUpdateManyWithWhereWithoutCountryInput

Name Type Nullable
where UserScalarWhereInput No
data UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutCountryInput No

UserScalarWhereInput

Name Type Nullable
AND UserScalarWhereInput | UserScalarWhereInput[] No
OR UserScalarWhereInput[] No
NOT UserScalarWhereInput | UserScalarWhereInput[] No
id StringFilter | String No
name StringFilter | String No
email StringFilter | String No
password StringNullableFilter | String | Null Yes
token StringNullableFilter | String | Null Yes
fcm_token StringNullableFilter | String | Null Yes
avatar StringNullableFilter | String | Null Yes
roleId StringNullableFilter | String | Null Yes
suspendendAt DateTimeNullableFilter | DateTime | Null Yes
status EnumUserStatusNullableFilter | UserStatus | Null Yes
streetAddress StringNullableFilter | String | Null Yes
city StringNullableFilter | String | Null Yes
cell StringNullableFilter | String | Null Yes
tell StringNullableFilter | String | Null Yes
verificationCode IntNullableFilter | Int | Null Yes
countryId StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No


PromotionUpdateWithWhereUniqueWithoutCountriesInput

Name Type Nullable
where PromotionWhereUniqueInput No
data PromotionUpdateWithoutCountriesInput | PromotionUncheckedUpdateWithoutCountriesInput No

PromotionUpdateManyWithWhereWithoutCountriesInput

Name Type Nullable
where PromotionScalarWhereInput No
data PromotionUpdateManyMutationInput | PromotionUncheckedUpdateManyWithoutCountriesInput No


BrandTemplateUpdateWithWhereUniqueWithoutCountryInput

Name Type Nullable
where BrandTemplateWhereUniqueInput No
data BrandTemplateUpdateWithoutCountryInput | BrandTemplateUncheckedUpdateWithoutCountryInput No

BrandTemplateUpdateManyWithWhereWithoutCountryInput

Name Type Nullable
where BrandTemplateScalarWhereInput No
data BrandTemplateUpdateManyMutationInput | BrandTemplateUncheckedUpdateManyWithoutCountryInput No

BrandTemplateScalarWhereInput

Name Type Nullable
AND BrandTemplateScalarWhereInput | BrandTemplateScalarWhereInput[] No
OR BrandTemplateScalarWhereInput[] No
NOT BrandTemplateScalarWhereInput | BrandTemplateScalarWhereInput[] No
id StringFilter | String No
name StringFilter | String No
description StringNullableFilter | String | Null Yes
tags StringNullableListFilter No
imageId StringNullableFilter | String | Null Yes
threeDImage StringNullableFilter | String | Null Yes
video StringNullableFilter | String | Null Yes
sizes StringNullableListFilter No
units StringNullableListFilter No
categoryId StringFilter | String No
addon_categories StringNullableListFilter No
varieties StringNullableListFilter No
manufacturer StringFilter | String No
street_address StringNullableFilter | String | Null Yes
city StringNullableFilter | String | Null Yes
countryId StringNullableFilter | String | Null Yes
email StringNullableFilter | String | Null Yes
website StringNullableFilter | String | Null Yes
draftNotes StringNullableFilter | String | Null Yes
draftType StringNullableFilter | String | Null Yes
draftCreatedAt DateTimeFilter | DateTime No
createdById StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
reviewedAt DateTimeNullableFilter | DateTime | Null Yes
reviewNotes StringNullableFilter | String | Null Yes
reviewerId StringNullableFilter | String | Null Yes
inReview BoolNullableFilter | Boolean | Null Yes
isApproved BoolNullableFilter | Boolean | Null Yes
lastModified DateTimeFilter | DateTime No
creatorClientId StringNullableFilter | String | Null Yes
creatorClientProductId StringNullableFilter | String | Null Yes
fromClientCleanedBy StringNullableFilter | String | Null Yes
hasZeroDepositOrder BoolNullableFilter | Boolean | Null Yes
hasTransparencyAll BoolNullableFilter | Boolean | Null Yes
isNotForUnder18 BoolNullableFilter | Boolean | Null Yes
isDirty BoolNullableFilter | Boolean | Null Yes


FeatureUpdateWithWhereUniqueWithoutCountriesInput

Name Type Nullable
where FeatureWhereUniqueInput No
data FeatureUpdateWithoutCountriesInput | FeatureUncheckedUpdateWithoutCountriesInput No

FeatureUpdateManyWithWhereWithoutCountriesInput

Name Type Nullable
where FeatureScalarWhereInput No
data FeatureUpdateManyMutationInput | FeatureUncheckedUpdateManyWithoutCountriesInput No

PermissionsCreateWithoutRoleInput

Name Type Nullable
id String No
accessLevel PermissionTypes No
domain DomainCreateNestedOneWithoutPermissionsInput No

PermissionsUncheckedCreateWithoutRoleInput

Name Type Nullable
id String No
accessLevel PermissionTypes No
domainId String No

PermissionsCreateOrConnectWithoutRoleInput

Name Type Nullable
where PermissionsWhereUniqueInput No
create PermissionsCreateWithoutRoleInput | PermissionsUncheckedCreateWithoutRoleInput No

PermissionsCreateManyRoleInputEnvelope

Name Type Nullable
data PermissionsCreateManyRoleInput | PermissionsCreateManyRoleInput[] No
skipDuplicates Boolean No

UserCreateWithoutRoleInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
createdAt DateTime No
country CountryCreateNestedOneWithoutUserInput No
teams TeamCreateNestedManyWithoutUserInput No
assignedTasks TaskCreateNestedManyWithoutAssigneeInput No
createdTasks TaskCreateNestedManyWithoutCreatedByInput No
promotion PromotionCreateNestedManyWithoutCreatedByInput No
payment PaymentCreateNestedManyWithoutCashierInput No
createdTemplates BrandTemplateCreateNestedManyWithoutCreatedByInput No
reviewedTemplates BrandTemplateCreateNestedManyWithoutReviewerInput No
clientEdits ClientEditCreateNestedManyWithoutApprovedByInput No

UserUncheckedCreateWithoutRoleInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
countryId String | Null Yes
createdAt DateTime No
teams TeamUncheckedCreateNestedManyWithoutUserInput No
assignedTasks TaskUncheckedCreateNestedManyWithoutAssigneeInput No
createdTasks TaskUncheckedCreateNestedManyWithoutCreatedByInput No
promotion PromotionUncheckedCreateNestedManyWithoutCreatedByInput No
payment PaymentUncheckedCreateNestedManyWithoutCashierInput No
createdTemplates BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput No
reviewedTemplates BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput No
clientEdits ClientEditUncheckedCreateNestedManyWithoutApprovedByInput No

UserCreateOrConnectWithoutRoleInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutRoleInput | UserUncheckedCreateWithoutRoleInput No

UserCreateManyRoleInputEnvelope

Name Type Nullable
data UserCreateManyRoleInput | UserCreateManyRoleInput[] No
skipDuplicates Boolean No


PermissionsUpdateWithWhereUniqueWithoutRoleInput

Name Type Nullable
where PermissionsWhereUniqueInput No
data PermissionsUpdateWithoutRoleInput | PermissionsUncheckedUpdateWithoutRoleInput No

PermissionsUpdateManyWithWhereWithoutRoleInput

Name Type Nullable
where PermissionsScalarWhereInput No
data PermissionsUpdateManyMutationInput | PermissionsUncheckedUpdateManyWithoutRoleInput No

PermissionsScalarWhereInput

Name Type Nullable
AND PermissionsScalarWhereInput | PermissionsScalarWhereInput[] No
OR PermissionsScalarWhereInput[] No
NOT PermissionsScalarWhereInput | PermissionsScalarWhereInput[] No
id StringFilter | String No
accessLevel EnumPermissionTypesFilter | PermissionTypes No
domainId StringFilter | String No
roleId StringFilter | String No

UserUpsertWithWhereUniqueWithoutRoleInput

Name Type Nullable
where UserWhereUniqueInput No
update UserUpdateWithoutRoleInput | UserUncheckedUpdateWithoutRoleInput No
create UserCreateWithoutRoleInput | UserUncheckedCreateWithoutRoleInput No

UserUpdateWithWhereUniqueWithoutRoleInput

Name Type Nullable
where UserWhereUniqueInput No
data UserUpdateWithoutRoleInput | UserUncheckedUpdateWithoutRoleInput No

UserUpdateManyWithWhereWithoutRoleInput

Name Type Nullable
where UserScalarWhereInput No
data UserUpdateManyMutationInput | UserUncheckedUpdateManyWithoutRoleInput No

PermissionsCreateWithoutDomainInput

Name Type Nullable
id String No
accessLevel PermissionTypes No
role RoleCreateNestedOneWithoutPermissionsInput No

PermissionsUncheckedCreateWithoutDomainInput

Name Type Nullable
id String No
accessLevel PermissionTypes No
roleId String No

PermissionsCreateOrConnectWithoutDomainInput

Name Type Nullable
where PermissionsWhereUniqueInput No
create PermissionsCreateWithoutDomainInput | PermissionsUncheckedCreateWithoutDomainInput No

PermissionsCreateManyDomainInputEnvelope

Name Type Nullable
data PermissionsCreateManyDomainInput | PermissionsCreateManyDomainInput[] No
skipDuplicates Boolean No


PermissionsUpdateWithWhereUniqueWithoutDomainInput

Name Type Nullable
where PermissionsWhereUniqueInput No
data PermissionsUpdateWithoutDomainInput | PermissionsUncheckedUpdateWithoutDomainInput No

PermissionsUpdateManyWithWhereWithoutDomainInput

Name Type Nullable
where PermissionsScalarWhereInput No
data PermissionsUpdateManyMutationInput | PermissionsUncheckedUpdateManyWithoutDomainInput No

DomainCreateWithoutPermissionsInput

Name Type Nullable
id String No
name String No
description String | Null Yes

DomainUncheckedCreateWithoutPermissionsInput

Name Type Nullable
id String No
name String No
description String | Null Yes

DomainCreateOrConnectWithoutPermissionsInput

Name Type Nullable
where DomainWhereUniqueInput No
create DomainCreateWithoutPermissionsInput | DomainUncheckedCreateWithoutPermissionsInput No

RoleCreateWithoutPermissionsInput

Name Type Nullable
id String No
name String No
description String | Null Yes
user UserCreateNestedManyWithoutRoleInput No

RoleUncheckedCreateWithoutPermissionsInput

Name Type Nullable
id String No
name String No
description String | Null Yes
user UserUncheckedCreateNestedManyWithoutRoleInput No

RoleCreateOrConnectWithoutPermissionsInput

Name Type Nullable
where RoleWhereUniqueInput No
create RoleCreateWithoutPermissionsInput | RoleUncheckedCreateWithoutPermissionsInput No


DomainUpdateToOneWithWhereWithoutPermissionsInput

Name Type Nullable
where DomainWhereInput No
data DomainUpdateWithoutPermissionsInput | DomainUncheckedUpdateWithoutPermissionsInput No

DomainUpdateWithoutPermissionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes

DomainUncheckedUpdateWithoutPermissionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes


RoleUpdateToOneWithWhereWithoutPermissionsInput

Name Type Nullable
where RoleWhereInput No
data RoleUpdateWithoutPermissionsInput | RoleUncheckedUpdateWithoutPermissionsInput No

RoleUpdateWithoutPermissionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
user UserUpdateManyWithoutRoleNestedInput No

RoleUncheckedUpdateWithoutPermissionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
user UserUncheckedUpdateManyWithoutRoleNestedInput No

RoleCreateWithoutUserInput

Name Type Nullable
id String No
name String No
description String | Null Yes
permissions PermissionsCreateNestedManyWithoutRoleInput No

RoleUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
name String No
description String | Null Yes
permissions PermissionsUncheckedCreateNestedManyWithoutRoleInput No

RoleCreateOrConnectWithoutUserInput

Name Type Nullable
where RoleWhereUniqueInput No
create RoleCreateWithoutUserInput | RoleUncheckedCreateWithoutUserInput No

CountryCreateWithoutUserInput

Name Type Nullable
id String No
name String No
promotions PromotionCreateNestedManyWithoutCountriesInput No
brandTemplate BrandTemplateCreateNestedManyWithoutCountryInput No
features FeatureCreateNestedManyWithoutCountriesInput No

CountryUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
name String No
promotions PromotionUncheckedCreateNestedManyWithoutCountriesInput No
brandTemplate BrandTemplateUncheckedCreateNestedManyWithoutCountryInput No
features FeatureUncheckedCreateNestedManyWithoutCountriesInput No

CountryCreateOrConnectWithoutUserInput

Name Type Nullable
where CountryWhereUniqueInput No
create CountryCreateWithoutUserInput | CountryUncheckedCreateWithoutUserInput No

TeamCreateWithoutUserInput

Name Type Nullable
id String No
name String No
createdAt DateTime No
leader String No
goals GoalCreateNestedManyWithoutTeamsInput No

TeamUncheckedCreateWithoutUserInput

Name Type Nullable
id String No
name String No
createdAt DateTime No
leader String No
goals GoalUncheckedCreateNestedManyWithoutTeamsInput No

TeamCreateOrConnectWithoutUserInput

Name Type Nullable
where TeamWhereUniqueInput No
create TeamCreateWithoutUserInput | TeamUncheckedCreateWithoutUserInput No

TeamCreateManyUserInputEnvelope

Name Type Nullable
data TeamCreateManyUserInput | TeamCreateManyUserInput[] No
skipDuplicates Boolean No

TaskCreateWithoutAssigneeInput

Name Type Nullable
id String No
title String No
comments String | Null Yes
createdAt DateTime No
startDate DateTime | Null Yes
dueDate DateTime | Null Yes
priority TaskPriority | Null Yes
stage TaskStage | Null Yes
Goal GoalCreateNestedOneWithoutTasksInput No
createdBy UserCreateNestedOneWithoutCreatedTasksInput No

TaskUncheckedCreateWithoutAssigneeInput

Name Type Nullable
id String No
title String No
comments String | Null Yes
createdAt DateTime No
startDate DateTime | Null Yes
dueDate DateTime | Null Yes
priority TaskPriority | Null Yes
stage TaskStage | Null Yes
GoalId String | Null Yes
createdById String | Null Yes

TaskCreateOrConnectWithoutAssigneeInput

Name Type Nullable
where TaskWhereUniqueInput No
create TaskCreateWithoutAssigneeInput | TaskUncheckedCreateWithoutAssigneeInput No

TaskCreateManyAssigneeInputEnvelope

Name Type Nullable
data TaskCreateManyAssigneeInput | TaskCreateManyAssigneeInput[] No
skipDuplicates Boolean No

TaskCreateWithoutCreatedByInput

Name Type Nullable
id String No
title String No
comments String | Null Yes
createdAt DateTime No
startDate DateTime | Null Yes
dueDate DateTime | Null Yes
priority TaskPriority | Null Yes
stage TaskStage | Null Yes
Goal GoalCreateNestedOneWithoutTasksInput No
assignee UserCreateNestedOneWithoutAssignedTasksInput No

TaskUncheckedCreateWithoutCreatedByInput

Name Type Nullable
id String No
title String No
comments String | Null Yes
createdAt DateTime No
startDate DateTime | Null Yes
dueDate DateTime | Null Yes
priority TaskPriority | Null Yes
stage TaskStage | Null Yes
GoalId String | Null Yes
assigneeId String | Null Yes

TaskCreateOrConnectWithoutCreatedByInput

Name Type Nullable
where TaskWhereUniqueInput No
create TaskCreateWithoutCreatedByInput | TaskUncheckedCreateWithoutCreatedByInput No

TaskCreateManyCreatedByInputEnvelope

Name Type Nullable
data TaskCreateManyCreatedByInput | TaskCreateManyCreatedByInput[] No
skipDuplicates Boolean No

PromotionCreateWithoutCreatedByInput

Name Type Nullable
id String No
name String No
description String | Null Yes
startDate DateTime No
endDate DateTime No
createdAt DateTime No
features FeatureCreateNestedManyWithoutPromotionsInput No
industries IndustryCreateNestedManyWithoutPromotionsInput No
countries CountryCreateNestedManyWithoutPromotionsInput No
packages PackageCreateNestedManyWithoutPromotionsInput No

PromotionUncheckedCreateWithoutCreatedByInput

Name Type Nullable
id String No
name String No
description String | Null Yes
startDate DateTime No
endDate DateTime No
createdAt DateTime No
features FeatureUncheckedCreateNestedManyWithoutPromotionsInput No
industries IndustryUncheckedCreateNestedManyWithoutPromotionsInput No
countries CountryUncheckedCreateNestedManyWithoutPromotionsInput No
packages PackageUncheckedCreateNestedManyWithoutPromotionsInput No

PromotionCreateOrConnectWithoutCreatedByInput

Name Type Nullable
where PromotionWhereUniqueInput No
create PromotionCreateWithoutCreatedByInput | PromotionUncheckedCreateWithoutCreatedByInput No

PromotionCreateManyCreatedByInputEnvelope

Name Type Nullable
data PromotionCreateManyCreatedByInput | PromotionCreateManyCreatedByInput[] No
skipDuplicates Boolean No

PaymentCreateWithoutCashierInput

Name Type Nullable
id String No
amount Decimal No
date DateTime No
center String | Null Yes
paymentMethod String No
revoked Boolean | Null Yes
createAt DateTime No
package PackageCreateNestedOneWithoutPaymentInput No

PaymentUncheckedCreateWithoutCashierInput

Name Type Nullable
id String No
amount Decimal No
date DateTime No
center String | Null Yes
packageId String No
paymentMethod String No
revoked Boolean | Null Yes
createAt DateTime No

PaymentCreateOrConnectWithoutCashierInput

Name Type Nullable
where PaymentWhereUniqueInput No
create PaymentCreateWithoutCashierInput | PaymentUncheckedCreateWithoutCashierInput No

PaymentCreateManyCashierInputEnvelope

Name Type Nullable
data PaymentCreateManyCashierInput | PaymentCreateManyCashierInput[] No
skipDuplicates Boolean No

BrandTemplateCreateWithoutCreatedByInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes
image ImageCreateNestedOneWithoutBrandTemplateInput No
category CategoryCreateNestedOneWithoutBrandTemplateInput No
country CountryCreateNestedOneWithoutBrandTemplateInput No
telNumbers TelCreateNestedManyWithoutBrandTemplateInput No
reviewer UserCreateNestedOneWithoutReviewedTemplatesInput No
client_edits ClientEditCreateNestedManyWithoutBrandTemplateInput No
implementationRatings ClientRatingCreateNestedManyWithoutBrandTemplateInput No

BrandTemplateUncheckedCreateWithoutCreatedByInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
imageId String | Null Yes
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
categoryId String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
countryId String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
reviewerId String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes
telNumbers TelUncheckedCreateNestedManyWithoutBrandTemplateInput No
client_edits ClientEditUncheckedCreateNestedManyWithoutBrandTemplateInput No
implementationRatings ClientRatingUncheckedCreateNestedManyWithoutBrandTemplateInput No

BrandTemplateCreateOrConnectWithoutCreatedByInput

Name Type Nullable
where BrandTemplateWhereUniqueInput No
create BrandTemplateCreateWithoutCreatedByInput | BrandTemplateUncheckedCreateWithoutCreatedByInput No

BrandTemplateCreateManyCreatedByInputEnvelope

Name Type Nullable
data BrandTemplateCreateManyCreatedByInput | BrandTemplateCreateManyCreatedByInput[] No
skipDuplicates Boolean No

BrandTemplateCreateWithoutReviewerInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes
image ImageCreateNestedOneWithoutBrandTemplateInput No
category CategoryCreateNestedOneWithoutBrandTemplateInput No
country CountryCreateNestedOneWithoutBrandTemplateInput No
telNumbers TelCreateNestedManyWithoutBrandTemplateInput No
createdBy UserCreateNestedOneWithoutCreatedTemplatesInput No
client_edits ClientEditCreateNestedManyWithoutBrandTemplateInput No
implementationRatings ClientRatingCreateNestedManyWithoutBrandTemplateInput No

BrandTemplateUncheckedCreateWithoutReviewerInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
imageId String | Null Yes
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
categoryId String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
countryId String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdById String | Null Yes
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes
telNumbers TelUncheckedCreateNestedManyWithoutBrandTemplateInput No
client_edits ClientEditUncheckedCreateNestedManyWithoutBrandTemplateInput No
implementationRatings ClientRatingUncheckedCreateNestedManyWithoutBrandTemplateInput No

BrandTemplateCreateOrConnectWithoutReviewerInput

Name Type Nullable
where BrandTemplateWhereUniqueInput No
create BrandTemplateCreateWithoutReviewerInput | BrandTemplateUncheckedCreateWithoutReviewerInput No

BrandTemplateCreateManyReviewerInputEnvelope

Name Type Nullable
data BrandTemplateCreateManyReviewerInput | BrandTemplateCreateManyReviewerInput[] No
skipDuplicates Boolean No

ClientEditCreateWithoutApprovedByInput

Name Type Nullable
id String No
clientId String | Null Yes
action ClientEditAction No
field String No
newValue String No
oldValue String No
approved Boolean | Null Yes
approvedTime DateTime | Null Yes
brandTemplate BrandTemplateCreateNestedOneWithoutClient_editsInput No

ClientEditUncheckedCreateWithoutApprovedByInput

Name Type Nullable
id String No
clientId String | Null Yes
action ClientEditAction No
field String No
newValue String No
oldValue String No
approved Boolean | Null Yes
approvedTime DateTime | Null Yes
brandTemplateId String No

ClientEditCreateOrConnectWithoutApprovedByInput

Name Type Nullable
where ClientEditWhereUniqueInput No
create ClientEditCreateWithoutApprovedByInput | ClientEditUncheckedCreateWithoutApprovedByInput No

ClientEditCreateManyApprovedByInputEnvelope

Name Type Nullable
data ClientEditCreateManyApprovedByInput | ClientEditCreateManyApprovedByInput[] No
skipDuplicates Boolean No


RoleUpdateToOneWithWhereWithoutUserInput

Name Type Nullable
where RoleWhereInput No
data RoleUpdateWithoutUserInput | RoleUncheckedUpdateWithoutUserInput No

RoleUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
permissions PermissionsUpdateManyWithoutRoleNestedInput No

RoleUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
permissions PermissionsUncheckedUpdateManyWithoutRoleNestedInput No


CountryUpdateToOneWithWhereWithoutUserInput

Name Type Nullable
where CountryWhereInput No
data CountryUpdateWithoutUserInput | CountryUncheckedUpdateWithoutUserInput No



TeamUpsertWithWhereUniqueWithoutUserInput

Name Type Nullable
where TeamWhereUniqueInput No
update TeamUpdateWithoutUserInput | TeamUncheckedUpdateWithoutUserInput No
create TeamCreateWithoutUserInput | TeamUncheckedCreateWithoutUserInput No

TeamUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where TeamWhereUniqueInput No
data TeamUpdateWithoutUserInput | TeamUncheckedUpdateWithoutUserInput No

TeamUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where TeamScalarWhereInput No
data TeamUpdateManyMutationInput | TeamUncheckedUpdateManyWithoutUserInput No

TeamScalarWhereInput

Name Type Nullable
AND TeamScalarWhereInput | TeamScalarWhereInput[] No
OR TeamScalarWhereInput[] No
NOT TeamScalarWhereInput | TeamScalarWhereInput[] No
id StringFilter | String No
name StringFilter | String No
createdAt DateTimeFilter | DateTime No
leader StringFilter | String No
userId StringNullableFilter | String | Null Yes


TaskUpdateWithWhereUniqueWithoutAssigneeInput

Name Type Nullable
where TaskWhereUniqueInput No
data TaskUpdateWithoutAssigneeInput | TaskUncheckedUpdateWithoutAssigneeInput No

TaskUpdateManyWithWhereWithoutAssigneeInput

Name Type Nullable
where TaskScalarWhereInput No
data TaskUpdateManyMutationInput | TaskUncheckedUpdateManyWithoutAssigneeInput No

TaskScalarWhereInput

Name Type Nullable
AND TaskScalarWhereInput | TaskScalarWhereInput[] No
OR TaskScalarWhereInput[] No
NOT TaskScalarWhereInput | TaskScalarWhereInput[] No
id StringFilter | String No
title StringFilter | String No
comments StringNullableFilter | String | Null Yes
createdAt DateTimeFilter | DateTime No
startDate DateTimeNullableFilter | DateTime | Null Yes
dueDate DateTimeNullableFilter | DateTime | Null Yes
priority EnumTaskPriorityNullableFilter | TaskPriority | Null Yes
stage EnumTaskStageNullableFilter | TaskStage | Null Yes
GoalId StringNullableFilter | String | Null Yes
assigneeId StringNullableFilter | String | Null Yes
createdById StringNullableFilter | String | Null Yes


TaskUpdateWithWhereUniqueWithoutCreatedByInput

Name Type Nullable
where TaskWhereUniqueInput No
data TaskUpdateWithoutCreatedByInput | TaskUncheckedUpdateWithoutCreatedByInput No

TaskUpdateManyWithWhereWithoutCreatedByInput

Name Type Nullable
where TaskScalarWhereInput No
data TaskUpdateManyMutationInput | TaskUncheckedUpdateManyWithoutCreatedByInput No


PromotionUpdateWithWhereUniqueWithoutCreatedByInput

Name Type Nullable
where PromotionWhereUniqueInput No
data PromotionUpdateWithoutCreatedByInput | PromotionUncheckedUpdateWithoutCreatedByInput No

PromotionUpdateManyWithWhereWithoutCreatedByInput

Name Type Nullable
where PromotionScalarWhereInput No
data PromotionUpdateManyMutationInput | PromotionUncheckedUpdateManyWithoutCreatedByInput No


PaymentUpdateWithWhereUniqueWithoutCashierInput

Name Type Nullable
where PaymentWhereUniqueInput No
data PaymentUpdateWithoutCashierInput | PaymentUncheckedUpdateWithoutCashierInput No

PaymentUpdateManyWithWhereWithoutCashierInput

Name Type Nullable
where PaymentScalarWhereInput No
data PaymentUpdateManyMutationInput | PaymentUncheckedUpdateManyWithoutCashierInput No

PaymentScalarWhereInput

Name Type Nullable
AND PaymentScalarWhereInput | PaymentScalarWhereInput[] No
OR PaymentScalarWhereInput[] No
NOT PaymentScalarWhereInput | PaymentScalarWhereInput[] No
id StringFilter | String No
amount DecimalFilter | Decimal No
date DateTimeFilter | DateTime No
center StringNullableFilter | String | Null Yes
packageId StringFilter | String No
paymentMethod StringFilter | String No
cashierId StringFilter | String No
revoked BoolNullableFilter | Boolean | Null Yes
createAt DateTimeFilter | DateTime No


BrandTemplateUpdateWithWhereUniqueWithoutCreatedByInput

Name Type Nullable
where BrandTemplateWhereUniqueInput No
data BrandTemplateUpdateWithoutCreatedByInput | BrandTemplateUncheckedUpdateWithoutCreatedByInput No

BrandTemplateUpdateManyWithWhereWithoutCreatedByInput

Name Type Nullable
where BrandTemplateScalarWhereInput No
data BrandTemplateUpdateManyMutationInput | BrandTemplateUncheckedUpdateManyWithoutCreatedByInput No


BrandTemplateUpdateWithWhereUniqueWithoutReviewerInput

Name Type Nullable
where BrandTemplateWhereUniqueInput No
data BrandTemplateUpdateWithoutReviewerInput | BrandTemplateUncheckedUpdateWithoutReviewerInput No

BrandTemplateUpdateManyWithWhereWithoutReviewerInput

Name Type Nullable
where BrandTemplateScalarWhereInput No
data BrandTemplateUpdateManyMutationInput | BrandTemplateUncheckedUpdateManyWithoutReviewerInput No


ClientEditUpdateWithWhereUniqueWithoutApprovedByInput

Name Type Nullable
where ClientEditWhereUniqueInput No
data ClientEditUpdateWithoutApprovedByInput | ClientEditUncheckedUpdateWithoutApprovedByInput No

ClientEditUpdateManyWithWhereWithoutApprovedByInput

Name Type Nullable
where ClientEditScalarWhereInput No
data ClientEditUpdateManyMutationInput | ClientEditUncheckedUpdateManyWithoutApprovedByInput No

ClientEditScalarWhereInput

Name Type Nullable
AND ClientEditScalarWhereInput | ClientEditScalarWhereInput[] No
OR ClientEditScalarWhereInput[] No
NOT ClientEditScalarWhereInput | ClientEditScalarWhereInput[] No
id StringFilter | String No
clientId StringNullableFilter | String | Null Yes
action EnumClientEditActionFilter | ClientEditAction No
field StringFilter | String No
newValue StringFilter | String No
oldValue StringFilter | String No
approved BoolNullableFilter | Boolean | Null Yes
approvedTime DateTimeNullableFilter | DateTime | Null Yes
approvedById StringNullableFilter | String | Null Yes
brandTemplateId StringFilter | String No

UserCreateWithoutTeamsInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
createdAt DateTime No
role RoleCreateNestedOneWithoutUserInput No
country CountryCreateNestedOneWithoutUserInput No
assignedTasks TaskCreateNestedManyWithoutAssigneeInput No
createdTasks TaskCreateNestedManyWithoutCreatedByInput No
promotion PromotionCreateNestedManyWithoutCreatedByInput No
payment PaymentCreateNestedManyWithoutCashierInput No
createdTemplates BrandTemplateCreateNestedManyWithoutCreatedByInput No
reviewedTemplates BrandTemplateCreateNestedManyWithoutReviewerInput No
clientEdits ClientEditCreateNestedManyWithoutApprovedByInput No

UserUncheckedCreateWithoutTeamsInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
roleId String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
countryId String | Null Yes
createdAt DateTime No
assignedTasks TaskUncheckedCreateNestedManyWithoutAssigneeInput No
createdTasks TaskUncheckedCreateNestedManyWithoutCreatedByInput No
promotion PromotionUncheckedCreateNestedManyWithoutCreatedByInput No
payment PaymentUncheckedCreateNestedManyWithoutCashierInput No
createdTemplates BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput No
reviewedTemplates BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput No
clientEdits ClientEditUncheckedCreateNestedManyWithoutApprovedByInput No

UserCreateOrConnectWithoutTeamsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutTeamsInput | UserUncheckedCreateWithoutTeamsInput No

GoalCreateWithoutTeamsInput

Name Type Nullable
id String No
title String No
description String | Null Yes
startDate DateTime | Null Yes
createdAt DateTime No
deadline DateTime | Null Yes
active Boolean | Null Yes
isComplete Boolean | Null Yes
tasks TaskCreateNestedManyWithoutGoalInput No

GoalUncheckedCreateWithoutTeamsInput

Name Type Nullable
id String No
title String No
description String | Null Yes
startDate DateTime | Null Yes
createdAt DateTime No
deadline DateTime | Null Yes
active Boolean | Null Yes
isComplete Boolean | Null Yes
tasks TaskUncheckedCreateNestedManyWithoutGoalInput No

GoalCreateOrConnectWithoutTeamsInput

Name Type Nullable
where GoalWhereUniqueInput No
create GoalCreateWithoutTeamsInput | GoalUncheckedCreateWithoutTeamsInput No


UserUpdateToOneWithWhereWithoutTeamsInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutTeamsInput | UserUncheckedUpdateWithoutTeamsInput No

UserUpdateWithoutTeamsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
role RoleUpdateOneWithoutUserNestedInput No
country CountryUpdateOneWithoutUserNestedInput No
assignedTasks TaskUpdateManyWithoutAssigneeNestedInput No
createdTasks TaskUpdateManyWithoutCreatedByNestedInput No
promotion PromotionUpdateManyWithoutCreatedByNestedInput No
payment PaymentUpdateManyWithoutCashierNestedInput No
createdTemplates BrandTemplateUpdateManyWithoutCreatedByNestedInput No
reviewedTemplates BrandTemplateUpdateManyWithoutReviewerNestedInput No
clientEdits ClientEditUpdateManyWithoutApprovedByNestedInput No

UserUncheckedUpdateWithoutTeamsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
roleId String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
assignedTasks TaskUncheckedUpdateManyWithoutAssigneeNestedInput No
createdTasks TaskUncheckedUpdateManyWithoutCreatedByNestedInput No
promotion PromotionUncheckedUpdateManyWithoutCreatedByNestedInput No
payment PaymentUncheckedUpdateManyWithoutCashierNestedInput No
createdTemplates BrandTemplateUncheckedUpdateManyWithoutCreatedByNestedInput No
reviewedTemplates BrandTemplateUncheckedUpdateManyWithoutReviewerNestedInput No
clientEdits ClientEditUncheckedUpdateManyWithoutApprovedByNestedInput No

GoalUpsertWithWhereUniqueWithoutTeamsInput

Name Type Nullable
where GoalWhereUniqueInput No
update GoalUpdateWithoutTeamsInput | GoalUncheckedUpdateWithoutTeamsInput No
create GoalCreateWithoutTeamsInput | GoalUncheckedCreateWithoutTeamsInput No

GoalUpdateWithWhereUniqueWithoutTeamsInput

Name Type Nullable
where GoalWhereUniqueInput No
data GoalUpdateWithoutTeamsInput | GoalUncheckedUpdateWithoutTeamsInput No

GoalUpdateManyWithWhereWithoutTeamsInput

Name Type Nullable
where GoalScalarWhereInput No
data GoalUpdateManyMutationInput | GoalUncheckedUpdateManyWithoutTeamsInput No

GoalScalarWhereInput

Name Type Nullable
AND GoalScalarWhereInput | GoalScalarWhereInput[] No
OR GoalScalarWhereInput[] No
NOT GoalScalarWhereInput | GoalScalarWhereInput[] No
id StringFilter | String No
title StringFilter | String No
description StringNullableFilter | String | Null Yes
startDate DateTimeNullableFilter | DateTime | Null Yes
createdAt DateTimeFilter | DateTime No
deadline DateTimeNullableFilter | DateTime | Null Yes
active BoolNullableFilter | Boolean | Null Yes
isComplete BoolNullableFilter | Boolean | Null Yes

TeamCreateWithoutGoalsInput

Name Type Nullable
id String No
name String No
createdAt DateTime No
leader String No
user UserCreateNestedOneWithoutTeamsInput No

TeamUncheckedCreateWithoutGoalsInput

Name Type Nullable
id String No
name String No
createdAt DateTime No
leader String No
userId String | Null Yes

TeamCreateOrConnectWithoutGoalsInput

Name Type Nullable
where TeamWhereUniqueInput No
create TeamCreateWithoutGoalsInput | TeamUncheckedCreateWithoutGoalsInput No

TaskCreateWithoutGoalInput

Name Type Nullable
id String No
title String No
comments String | Null Yes
createdAt DateTime No
startDate DateTime | Null Yes
dueDate DateTime | Null Yes
priority TaskPriority | Null Yes
stage TaskStage | Null Yes
assignee UserCreateNestedOneWithoutAssignedTasksInput No
createdBy UserCreateNestedOneWithoutCreatedTasksInput No

TaskUncheckedCreateWithoutGoalInput

Name Type Nullable
id String No
title String No
comments String | Null Yes
createdAt DateTime No
startDate DateTime | Null Yes
dueDate DateTime | Null Yes
priority TaskPriority | Null Yes
stage TaskStage | Null Yes
assigneeId String | Null Yes
createdById String | Null Yes

TaskCreateOrConnectWithoutGoalInput

Name Type Nullable
where TaskWhereUniqueInput No
create TaskCreateWithoutGoalInput | TaskUncheckedCreateWithoutGoalInput No

TaskCreateManyGoalInputEnvelope

Name Type Nullable
data TaskCreateManyGoalInput | TaskCreateManyGoalInput[] No
skipDuplicates Boolean No

TeamUpsertWithWhereUniqueWithoutGoalsInput

Name Type Nullable
where TeamWhereUniqueInput No
update TeamUpdateWithoutGoalsInput | TeamUncheckedUpdateWithoutGoalsInput No
create TeamCreateWithoutGoalsInput | TeamUncheckedCreateWithoutGoalsInput No

TeamUpdateWithWhereUniqueWithoutGoalsInput

Name Type Nullable
where TeamWhereUniqueInput No
data TeamUpdateWithoutGoalsInput | TeamUncheckedUpdateWithoutGoalsInput No

TeamUpdateManyWithWhereWithoutGoalsInput

Name Type Nullable
where TeamScalarWhereInput No
data TeamUpdateManyMutationInput | TeamUncheckedUpdateManyWithoutGoalsInput No

TaskUpsertWithWhereUniqueWithoutGoalInput

Name Type Nullable
where TaskWhereUniqueInput No
update TaskUpdateWithoutGoalInput | TaskUncheckedUpdateWithoutGoalInput No
create TaskCreateWithoutGoalInput | TaskUncheckedCreateWithoutGoalInput No

TaskUpdateWithWhereUniqueWithoutGoalInput

Name Type Nullable
where TaskWhereUniqueInput No
data TaskUpdateWithoutGoalInput | TaskUncheckedUpdateWithoutGoalInput No

TaskUpdateManyWithWhereWithoutGoalInput

Name Type Nullable
where TaskScalarWhereInput No
data TaskUpdateManyMutationInput | TaskUncheckedUpdateManyWithoutGoalInput No

GoalCreateWithoutTasksInput

Name Type Nullable
id String No
title String No
description String | Null Yes
startDate DateTime | Null Yes
createdAt DateTime No
deadline DateTime | Null Yes
active Boolean | Null Yes
isComplete Boolean | Null Yes
teams TeamCreateNestedManyWithoutGoalsInput No

GoalUncheckedCreateWithoutTasksInput

Name Type Nullable
id String No
title String No
description String | Null Yes
startDate DateTime | Null Yes
createdAt DateTime No
deadline DateTime | Null Yes
active Boolean | Null Yes
isComplete Boolean | Null Yes
teams TeamUncheckedCreateNestedManyWithoutGoalsInput No

GoalCreateOrConnectWithoutTasksInput

Name Type Nullable
where GoalWhereUniqueInput No
create GoalCreateWithoutTasksInput | GoalUncheckedCreateWithoutTasksInput No

UserCreateWithoutAssignedTasksInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
createdAt DateTime No
role RoleCreateNestedOneWithoutUserInput No
country CountryCreateNestedOneWithoutUserInput No
teams TeamCreateNestedManyWithoutUserInput No
createdTasks TaskCreateNestedManyWithoutCreatedByInput No
promotion PromotionCreateNestedManyWithoutCreatedByInput No
payment PaymentCreateNestedManyWithoutCashierInput No
createdTemplates BrandTemplateCreateNestedManyWithoutCreatedByInput No
reviewedTemplates BrandTemplateCreateNestedManyWithoutReviewerInput No
clientEdits ClientEditCreateNestedManyWithoutApprovedByInput No

UserUncheckedCreateWithoutAssignedTasksInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
roleId String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
countryId String | Null Yes
createdAt DateTime No
teams TeamUncheckedCreateNestedManyWithoutUserInput No
createdTasks TaskUncheckedCreateNestedManyWithoutCreatedByInput No
promotion PromotionUncheckedCreateNestedManyWithoutCreatedByInput No
payment PaymentUncheckedCreateNestedManyWithoutCashierInput No
createdTemplates BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput No
reviewedTemplates BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput No
clientEdits ClientEditUncheckedCreateNestedManyWithoutApprovedByInput No

UserCreateOrConnectWithoutAssignedTasksInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutAssignedTasksInput | UserUncheckedCreateWithoutAssignedTasksInput No

UserCreateWithoutCreatedTasksInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
createdAt DateTime No
role RoleCreateNestedOneWithoutUserInput No
country CountryCreateNestedOneWithoutUserInput No
teams TeamCreateNestedManyWithoutUserInput No
assignedTasks TaskCreateNestedManyWithoutAssigneeInput No
promotion PromotionCreateNestedManyWithoutCreatedByInput No
payment PaymentCreateNestedManyWithoutCashierInput No
createdTemplates BrandTemplateCreateNestedManyWithoutCreatedByInput No
reviewedTemplates BrandTemplateCreateNestedManyWithoutReviewerInput No
clientEdits ClientEditCreateNestedManyWithoutApprovedByInput No

UserUncheckedCreateWithoutCreatedTasksInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
roleId String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
countryId String | Null Yes
createdAt DateTime No
teams TeamUncheckedCreateNestedManyWithoutUserInput No
assignedTasks TaskUncheckedCreateNestedManyWithoutAssigneeInput No
promotion PromotionUncheckedCreateNestedManyWithoutCreatedByInput No
payment PaymentUncheckedCreateNestedManyWithoutCashierInput No
createdTemplates BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput No
reviewedTemplates BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput No
clientEdits ClientEditUncheckedCreateNestedManyWithoutApprovedByInput No

UserCreateOrConnectWithoutCreatedTasksInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutCreatedTasksInput | UserUncheckedCreateWithoutCreatedTasksInput No


GoalUpdateToOneWithWhereWithoutTasksInput

Name Type Nullable
where GoalWhereInput No
data GoalUpdateWithoutTasksInput | GoalUncheckedUpdateWithoutTasksInput No

GoalUpdateWithoutTasksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
deadline DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
active Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isComplete Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
teams TeamUpdateManyWithoutGoalsNestedInput No

GoalUncheckedUpdateWithoutTasksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
deadline DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
active Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isComplete Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
teams TeamUncheckedUpdateManyWithoutGoalsNestedInput No


UserUpdateToOneWithWhereWithoutAssignedTasksInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutAssignedTasksInput | UserUncheckedUpdateWithoutAssignedTasksInput No

UserUpdateWithoutAssignedTasksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
role RoleUpdateOneWithoutUserNestedInput No
country CountryUpdateOneWithoutUserNestedInput No
teams TeamUpdateManyWithoutUserNestedInput No
createdTasks TaskUpdateManyWithoutCreatedByNestedInput No
promotion PromotionUpdateManyWithoutCreatedByNestedInput No
payment PaymentUpdateManyWithoutCashierNestedInput No
createdTemplates BrandTemplateUpdateManyWithoutCreatedByNestedInput No
reviewedTemplates BrandTemplateUpdateManyWithoutReviewerNestedInput No
clientEdits ClientEditUpdateManyWithoutApprovedByNestedInput No

UserUncheckedUpdateWithoutAssignedTasksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
roleId String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
teams TeamUncheckedUpdateManyWithoutUserNestedInput No
createdTasks TaskUncheckedUpdateManyWithoutCreatedByNestedInput No
promotion PromotionUncheckedUpdateManyWithoutCreatedByNestedInput No
payment PaymentUncheckedUpdateManyWithoutCashierNestedInput No
createdTemplates BrandTemplateUncheckedUpdateManyWithoutCreatedByNestedInput No
reviewedTemplates BrandTemplateUncheckedUpdateManyWithoutReviewerNestedInput No
clientEdits ClientEditUncheckedUpdateManyWithoutApprovedByNestedInput No


UserUpdateToOneWithWhereWithoutCreatedTasksInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutCreatedTasksInput | UserUncheckedUpdateWithoutCreatedTasksInput No

UserUpdateWithoutCreatedTasksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
role RoleUpdateOneWithoutUserNestedInput No
country CountryUpdateOneWithoutUserNestedInput No
teams TeamUpdateManyWithoutUserNestedInput No
assignedTasks TaskUpdateManyWithoutAssigneeNestedInput No
promotion PromotionUpdateManyWithoutCreatedByNestedInput No
payment PaymentUpdateManyWithoutCashierNestedInput No
createdTemplates BrandTemplateUpdateManyWithoutCreatedByNestedInput No
reviewedTemplates BrandTemplateUpdateManyWithoutReviewerNestedInput No
clientEdits ClientEditUpdateManyWithoutApprovedByNestedInput No

UserUncheckedUpdateWithoutCreatedTasksInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
roleId String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
teams TeamUncheckedUpdateManyWithoutUserNestedInput No
assignedTasks TaskUncheckedUpdateManyWithoutAssigneeNestedInput No
promotion PromotionUncheckedUpdateManyWithoutCreatedByNestedInput No
payment PaymentUncheckedUpdateManyWithoutCashierNestedInput No
createdTemplates BrandTemplateUncheckedUpdateManyWithoutCreatedByNestedInput No
reviewedTemplates BrandTemplateUncheckedUpdateManyWithoutReviewerNestedInput No
clientEdits ClientEditUncheckedUpdateManyWithoutApprovedByNestedInput No

IndustryCreateWithoutFeaturesInput

Name Type Nullable
id String No
name String No
promotions PromotionCreateNestedManyWithoutIndustriesInput No
categories CategoryCreateNestedManyWithoutIndustriesInput No

IndustryUncheckedCreateWithoutFeaturesInput

Name Type Nullable
id String No
name String No
promotions PromotionUncheckedCreateNestedManyWithoutIndustriesInput No
categories CategoryUncheckedCreateNestedManyWithoutIndustriesInput No

IndustryCreateOrConnectWithoutFeaturesInput

Name Type Nullable
where IndustryWhereUniqueInput No
create IndustryCreateWithoutFeaturesInput | IndustryUncheckedCreateWithoutFeaturesInput No

CountryCreateWithoutFeaturesInput

Name Type Nullable
id String No
name String No
user UserCreateNestedManyWithoutCountryInput No
promotions PromotionCreateNestedManyWithoutCountriesInput No
brandTemplate BrandTemplateCreateNestedManyWithoutCountryInput No

CountryUncheckedCreateWithoutFeaturesInput

Name Type Nullable
id String No
name String No
user UserUncheckedCreateNestedManyWithoutCountryInput No
promotions PromotionUncheckedCreateNestedManyWithoutCountriesInput No
brandTemplate BrandTemplateUncheckedCreateNestedManyWithoutCountryInput No

CountryCreateOrConnectWithoutFeaturesInput

Name Type Nullable
where CountryWhereUniqueInput No
create CountryCreateWithoutFeaturesInput | CountryUncheckedCreateWithoutFeaturesInput No

PromotionCreateWithoutFeaturesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
startDate DateTime No
endDate DateTime No
createdAt DateTime No
industries IndustryCreateNestedManyWithoutPromotionsInput No
countries CountryCreateNestedManyWithoutPromotionsInput No
packages PackageCreateNestedManyWithoutPromotionsInput No
createdBy UserCreateNestedOneWithoutPromotionInput No

PromotionUncheckedCreateWithoutFeaturesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
startDate DateTime No
endDate DateTime No
createdById String | Null Yes
createdAt DateTime No
industries IndustryUncheckedCreateNestedManyWithoutPromotionsInput No
countries CountryUncheckedCreateNestedManyWithoutPromotionsInput No
packages PackageUncheckedCreateNestedManyWithoutPromotionsInput No

PromotionCreateOrConnectWithoutFeaturesInput

Name Type Nullable
where PromotionWhereUniqueInput No
create PromotionCreateWithoutFeaturesInput | PromotionUncheckedCreateWithoutFeaturesInput No

PackageCreateWithoutFeaturesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
color String | Null Yes
level Int No
prices PackagePriceCreateNestedManyWithoutPackageInput No
promotions PromotionCreateNestedManyWithoutPackagesInput No
payment PaymentCreateNestedManyWithoutPackageInput No

PackageUncheckedCreateWithoutFeaturesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
color String | Null Yes
level Int No
prices PackagePriceUncheckedCreateNestedManyWithoutPackageInput No
promotions PromotionUncheckedCreateNestedManyWithoutPackagesInput No
payment PaymentUncheckedCreateNestedManyWithoutPackageInput No

PackageCreateOrConnectWithoutFeaturesInput

Name Type Nullable
where PackageWhereUniqueInput No
create PackageCreateWithoutFeaturesInput | PackageUncheckedCreateWithoutFeaturesInput No


IndustryUpdateWithWhereUniqueWithoutFeaturesInput

Name Type Nullable
where IndustryWhereUniqueInput No
data IndustryUpdateWithoutFeaturesInput | IndustryUncheckedUpdateWithoutFeaturesInput No

IndustryUpdateManyWithWhereWithoutFeaturesInput

Name Type Nullable
where IndustryScalarWhereInput No
data IndustryUpdateManyMutationInput | IndustryUncheckedUpdateManyWithoutFeaturesInput No

IndustryScalarWhereInput

Name Type Nullable
AND IndustryScalarWhereInput | IndustryScalarWhereInput[] No
OR IndustryScalarWhereInput[] No
NOT IndustryScalarWhereInput | IndustryScalarWhereInput[] No
id StringFilter | String No
name StringFilter | String No


CountryUpdateWithWhereUniqueWithoutFeaturesInput

Name Type Nullable
where CountryWhereUniqueInput No
data CountryUpdateWithoutFeaturesInput | CountryUncheckedUpdateWithoutFeaturesInput No

CountryUpdateManyWithWhereWithoutFeaturesInput

Name Type Nullable
where CountryScalarWhereInput No
data CountryUpdateManyMutationInput | CountryUncheckedUpdateManyWithoutFeaturesInput No

CountryScalarWhereInput

Name Type Nullable
AND CountryScalarWhereInput | CountryScalarWhereInput[] No
OR CountryScalarWhereInput[] No
NOT CountryScalarWhereInput | CountryScalarWhereInput[] No
id StringFilter | String No
name StringFilter | String No


PromotionUpdateWithWhereUniqueWithoutFeaturesInput

Name Type Nullable
where PromotionWhereUniqueInput No
data PromotionUpdateWithoutFeaturesInput | PromotionUncheckedUpdateWithoutFeaturesInput No

PromotionUpdateManyWithWhereWithoutFeaturesInput

Name Type Nullable
where PromotionScalarWhereInput No
data PromotionUpdateManyMutationInput | PromotionUncheckedUpdateManyWithoutFeaturesInput No


PackageUpdateWithWhereUniqueWithoutFeaturesInput

Name Type Nullable
where PackageWhereUniqueInput No
data PackageUpdateWithoutFeaturesInput | PackageUncheckedUpdateWithoutFeaturesInput No

PackageUpdateManyWithWhereWithoutFeaturesInput

Name Type Nullable
where PackageScalarWhereInput No
data PackageUpdateManyMutationInput | PackageUncheckedUpdateManyWithoutFeaturesInput No

PackageScalarWhereInput

Name Type Nullable
AND PackageScalarWhereInput | PackageScalarWhereInput[] No
OR PackageScalarWhereInput[] No
NOT PackageScalarWhereInput | PackageScalarWhereInput[] No
id StringFilter | String No
name StringFilter | String No
description StringNullableFilter | String | Null Yes
color StringNullableFilter | String | Null Yes
level IntFilter | Int No

PackagePriceCreateWithoutPackageInput

Name Type Nullable
id String No
duration Float No
amount Float No
extentionTime Float | Null Yes

PackagePriceUncheckedCreateWithoutPackageInput

Name Type Nullable
id String No
duration Float No
amount Float No
extentionTime Float | Null Yes

PackagePriceCreateOrConnectWithoutPackageInput

Name Type Nullable
where PackagePriceWhereUniqueInput No
create PackagePriceCreateWithoutPackageInput | PackagePriceUncheckedCreateWithoutPackageInput No

PackagePriceCreateManyPackageInputEnvelope

Name Type Nullable
data PackagePriceCreateManyPackageInput | PackagePriceCreateManyPackageInput[] No
skipDuplicates Boolean No

FeatureCreateWithoutPackagesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
type FeatureType No
industries IndustryCreateNestedManyWithoutFeaturesInput No
countries CountryCreateNestedManyWithoutFeaturesInput No
promotions PromotionCreateNestedManyWithoutFeaturesInput No

FeatureUncheckedCreateWithoutPackagesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
type FeatureType No
industries IndustryUncheckedCreateNestedManyWithoutFeaturesInput No
countries CountryUncheckedCreateNestedManyWithoutFeaturesInput No
promotions PromotionUncheckedCreateNestedManyWithoutFeaturesInput No

FeatureCreateOrConnectWithoutPackagesInput

Name Type Nullable
where FeatureWhereUniqueInput No
create FeatureCreateWithoutPackagesInput | FeatureUncheckedCreateWithoutPackagesInput No

PromotionCreateWithoutPackagesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
startDate DateTime No
endDate DateTime No
createdAt DateTime No
features FeatureCreateNestedManyWithoutPromotionsInput No
industries IndustryCreateNestedManyWithoutPromotionsInput No
countries CountryCreateNestedManyWithoutPromotionsInput No
createdBy UserCreateNestedOneWithoutPromotionInput No

PromotionUncheckedCreateWithoutPackagesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
startDate DateTime No
endDate DateTime No
createdById String | Null Yes
createdAt DateTime No
features FeatureUncheckedCreateNestedManyWithoutPromotionsInput No
industries IndustryUncheckedCreateNestedManyWithoutPromotionsInput No
countries CountryUncheckedCreateNestedManyWithoutPromotionsInput No

PromotionCreateOrConnectWithoutPackagesInput

Name Type Nullable
where PromotionWhereUniqueInput No
create PromotionCreateWithoutPackagesInput | PromotionUncheckedCreateWithoutPackagesInput No

PaymentCreateWithoutPackageInput

Name Type Nullable
id String No
amount Decimal No
date DateTime No
center String | Null Yes
paymentMethod String No
revoked Boolean | Null Yes
createAt DateTime No
cashier UserCreateNestedOneWithoutPaymentInput No

PaymentUncheckedCreateWithoutPackageInput

Name Type Nullable
id String No
amount Decimal No
date DateTime No
center String | Null Yes
paymentMethod String No
cashierId String No
revoked Boolean | Null Yes
createAt DateTime No

PaymentCreateOrConnectWithoutPackageInput

Name Type Nullable
where PaymentWhereUniqueInput No
create PaymentCreateWithoutPackageInput | PaymentUncheckedCreateWithoutPackageInput No

PaymentCreateManyPackageInputEnvelope

Name Type Nullable
data PaymentCreateManyPackageInput | PaymentCreateManyPackageInput[] No
skipDuplicates Boolean No


PackagePriceUpdateWithWhereUniqueWithoutPackageInput

Name Type Nullable
where PackagePriceWhereUniqueInput No
data PackagePriceUpdateWithoutPackageInput | PackagePriceUncheckedUpdateWithoutPackageInput No

PackagePriceUpdateManyWithWhereWithoutPackageInput

Name Type Nullable
where PackagePriceScalarWhereInput No
data PackagePriceUpdateManyMutationInput | PackagePriceUncheckedUpdateManyWithoutPackageInput No

PackagePriceScalarWhereInput

Name Type Nullable
AND PackagePriceScalarWhereInput | PackagePriceScalarWhereInput[] No
OR PackagePriceScalarWhereInput[] No
NOT PackagePriceScalarWhereInput | PackagePriceScalarWhereInput[] No
id StringFilter | String No
duration FloatFilter | Float No
amount FloatFilter | Float No
extentionTime FloatNullableFilter | Float | Null Yes
packageId StringNullableFilter | String | Null Yes


FeatureUpdateWithWhereUniqueWithoutPackagesInput

Name Type Nullable
where FeatureWhereUniqueInput No
data FeatureUpdateWithoutPackagesInput | FeatureUncheckedUpdateWithoutPackagesInput No

FeatureUpdateManyWithWhereWithoutPackagesInput

Name Type Nullable
where FeatureScalarWhereInput No
data FeatureUpdateManyMutationInput | FeatureUncheckedUpdateManyWithoutPackagesInput No


PromotionUpdateWithWhereUniqueWithoutPackagesInput

Name Type Nullable
where PromotionWhereUniqueInput No
data PromotionUpdateWithoutPackagesInput | PromotionUncheckedUpdateWithoutPackagesInput No

PromotionUpdateManyWithWhereWithoutPackagesInput

Name Type Nullable
where PromotionScalarWhereInput No
data PromotionUpdateManyMutationInput | PromotionUncheckedUpdateManyWithoutPackagesInput No


PaymentUpdateWithWhereUniqueWithoutPackageInput

Name Type Nullable
where PaymentWhereUniqueInput No
data PaymentUpdateWithoutPackageInput | PaymentUncheckedUpdateWithoutPackageInput No

PaymentUpdateManyWithWhereWithoutPackageInput

Name Type Nullable
where PaymentScalarWhereInput No
data PaymentUpdateManyMutationInput | PaymentUncheckedUpdateManyWithoutPackageInput No

PackageCreateWithoutPricesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
color String | Null Yes
level Int No
features FeatureCreateNestedManyWithoutPackagesInput No
promotions PromotionCreateNestedManyWithoutPackagesInput No
payment PaymentCreateNestedManyWithoutPackageInput No

PackageUncheckedCreateWithoutPricesInput

Name Type Nullable
id String No
name String No
description String | Null Yes
color String | Null Yes
level Int No
features FeatureUncheckedCreateNestedManyWithoutPackagesInput No
promotions PromotionUncheckedCreateNestedManyWithoutPackagesInput No
payment PaymentUncheckedCreateNestedManyWithoutPackageInput No

PackageCreateOrConnectWithoutPricesInput

Name Type Nullable
where PackageWhereUniqueInput No
create PackageCreateWithoutPricesInput | PackageUncheckedCreateWithoutPricesInput No


PackageUpdateToOneWithWhereWithoutPricesInput

Name Type Nullable
where PackageWhereInput No
data PackageUpdateWithoutPricesInput | PackageUncheckedUpdateWithoutPricesInput No

PackageUpdateWithoutPricesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
level Int | IntFieldUpdateOperationsInput No
features FeatureUpdateManyWithoutPackagesNestedInput No
promotions PromotionUpdateManyWithoutPackagesNestedInput No
payment PaymentUpdateManyWithoutPackageNestedInput No


FeatureCreateWithoutPromotionsInput

Name Type Nullable
id String No
name String No
description String | Null Yes
type FeatureType No
industries IndustryCreateNestedManyWithoutFeaturesInput No
countries CountryCreateNestedManyWithoutFeaturesInput No
packages PackageCreateNestedManyWithoutFeaturesInput No

FeatureUncheckedCreateWithoutPromotionsInput

Name Type Nullable
id String No
name String No
description String | Null Yes
type FeatureType No
industries IndustryUncheckedCreateNestedManyWithoutFeaturesInput No
countries CountryUncheckedCreateNestedManyWithoutFeaturesInput No
packages PackageUncheckedCreateNestedManyWithoutFeaturesInput No

FeatureCreateOrConnectWithoutPromotionsInput

Name Type Nullable
where FeatureWhereUniqueInput No
create FeatureCreateWithoutPromotionsInput | FeatureUncheckedCreateWithoutPromotionsInput No

IndustryCreateWithoutPromotionsInput

Name Type Nullable
id String No
name String No
categories CategoryCreateNestedManyWithoutIndustriesInput No
features FeatureCreateNestedManyWithoutIndustriesInput No

IndustryUncheckedCreateWithoutPromotionsInput

Name Type Nullable
id String No
name String No
categories CategoryUncheckedCreateNestedManyWithoutIndustriesInput No
features FeatureUncheckedCreateNestedManyWithoutIndustriesInput No

IndustryCreateOrConnectWithoutPromotionsInput

Name Type Nullable
where IndustryWhereUniqueInput No
create IndustryCreateWithoutPromotionsInput | IndustryUncheckedCreateWithoutPromotionsInput No

CountryCreateWithoutPromotionsInput

Name Type Nullable
id String No
name String No
user UserCreateNestedManyWithoutCountryInput No
brandTemplate BrandTemplateCreateNestedManyWithoutCountryInput No
features FeatureCreateNestedManyWithoutCountriesInput No

CountryUncheckedCreateWithoutPromotionsInput

Name Type Nullable
id String No
name String No
user UserUncheckedCreateNestedManyWithoutCountryInput No
brandTemplate BrandTemplateUncheckedCreateNestedManyWithoutCountryInput No
features FeatureUncheckedCreateNestedManyWithoutCountriesInput No

CountryCreateOrConnectWithoutPromotionsInput

Name Type Nullable
where CountryWhereUniqueInput No
create CountryCreateWithoutPromotionsInput | CountryUncheckedCreateWithoutPromotionsInput No

PackageCreateWithoutPromotionsInput

Name Type Nullable
id String No
name String No
description String | Null Yes
color String | Null Yes
level Int No
prices PackagePriceCreateNestedManyWithoutPackageInput No
features FeatureCreateNestedManyWithoutPackagesInput No
payment PaymentCreateNestedManyWithoutPackageInput No

PackageUncheckedCreateWithoutPromotionsInput

Name Type Nullable
id String No
name String No
description String | Null Yes
color String | Null Yes
level Int No
prices PackagePriceUncheckedCreateNestedManyWithoutPackageInput No
features FeatureUncheckedCreateNestedManyWithoutPackagesInput No
payment PaymentUncheckedCreateNestedManyWithoutPackageInput No

PackageCreateOrConnectWithoutPromotionsInput

Name Type Nullable
where PackageWhereUniqueInput No
create PackageCreateWithoutPromotionsInput | PackageUncheckedCreateWithoutPromotionsInput No

UserCreateWithoutPromotionInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
createdAt DateTime No
role RoleCreateNestedOneWithoutUserInput No
country CountryCreateNestedOneWithoutUserInput No
teams TeamCreateNestedManyWithoutUserInput No
assignedTasks TaskCreateNestedManyWithoutAssigneeInput No
createdTasks TaskCreateNestedManyWithoutCreatedByInput No
payment PaymentCreateNestedManyWithoutCashierInput No
createdTemplates BrandTemplateCreateNestedManyWithoutCreatedByInput No
reviewedTemplates BrandTemplateCreateNestedManyWithoutReviewerInput No
clientEdits ClientEditCreateNestedManyWithoutApprovedByInput No

UserUncheckedCreateWithoutPromotionInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
roleId String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
countryId String | Null Yes
createdAt DateTime No
teams TeamUncheckedCreateNestedManyWithoutUserInput No
assignedTasks TaskUncheckedCreateNestedManyWithoutAssigneeInput No
createdTasks TaskUncheckedCreateNestedManyWithoutCreatedByInput No
payment PaymentUncheckedCreateNestedManyWithoutCashierInput No
createdTemplates BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput No
reviewedTemplates BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput No
clientEdits ClientEditUncheckedCreateNestedManyWithoutApprovedByInput No

UserCreateOrConnectWithoutPromotionInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutPromotionInput | UserUncheckedCreateWithoutPromotionInput No


FeatureUpdateWithWhereUniqueWithoutPromotionsInput

Name Type Nullable
where FeatureWhereUniqueInput No
data FeatureUpdateWithoutPromotionsInput | FeatureUncheckedUpdateWithoutPromotionsInput No

FeatureUpdateManyWithWhereWithoutPromotionsInput

Name Type Nullable
where FeatureScalarWhereInput No
data FeatureUpdateManyMutationInput | FeatureUncheckedUpdateManyWithoutPromotionsInput No


IndustryUpdateWithWhereUniqueWithoutPromotionsInput

Name Type Nullable
where IndustryWhereUniqueInput No
data IndustryUpdateWithoutPromotionsInput | IndustryUncheckedUpdateWithoutPromotionsInput No

IndustryUpdateManyWithWhereWithoutPromotionsInput

Name Type Nullable
where IndustryScalarWhereInput No
data IndustryUpdateManyMutationInput | IndustryUncheckedUpdateManyWithoutPromotionsInput No


CountryUpdateWithWhereUniqueWithoutPromotionsInput

Name Type Nullable
where CountryWhereUniqueInput No
data CountryUpdateWithoutPromotionsInput | CountryUncheckedUpdateWithoutPromotionsInput No

CountryUpdateManyWithWhereWithoutPromotionsInput

Name Type Nullable
where CountryScalarWhereInput No
data CountryUpdateManyMutationInput | CountryUncheckedUpdateManyWithoutPromotionsInput No


PackageUpdateWithWhereUniqueWithoutPromotionsInput

Name Type Nullable
where PackageWhereUniqueInput No
data PackageUpdateWithoutPromotionsInput | PackageUncheckedUpdateWithoutPromotionsInput No

PackageUpdateManyWithWhereWithoutPromotionsInput

Name Type Nullable
where PackageScalarWhereInput No
data PackageUpdateManyMutationInput | PackageUncheckedUpdateManyWithoutPromotionsInput No


UserUpdateToOneWithWhereWithoutPromotionInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutPromotionInput | UserUncheckedUpdateWithoutPromotionInput No

UserUpdateWithoutPromotionInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
role RoleUpdateOneWithoutUserNestedInput No
country CountryUpdateOneWithoutUserNestedInput No
teams TeamUpdateManyWithoutUserNestedInput No
assignedTasks TaskUpdateManyWithoutAssigneeNestedInput No
createdTasks TaskUpdateManyWithoutCreatedByNestedInput No
payment PaymentUpdateManyWithoutCashierNestedInput No
createdTemplates BrandTemplateUpdateManyWithoutCreatedByNestedInput No
reviewedTemplates BrandTemplateUpdateManyWithoutReviewerNestedInput No
clientEdits ClientEditUpdateManyWithoutApprovedByNestedInput No

UserUncheckedUpdateWithoutPromotionInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
roleId String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
teams TeamUncheckedUpdateManyWithoutUserNestedInput No
assignedTasks TaskUncheckedUpdateManyWithoutAssigneeNestedInput No
createdTasks TaskUncheckedUpdateManyWithoutCreatedByNestedInput No
payment PaymentUncheckedUpdateManyWithoutCashierNestedInput No
createdTemplates BrandTemplateUncheckedUpdateManyWithoutCreatedByNestedInput No
reviewedTemplates BrandTemplateUncheckedUpdateManyWithoutReviewerNestedInput No
clientEdits ClientEditUncheckedUpdateManyWithoutApprovedByNestedInput No

PackageCreateWithoutPaymentInput

Name Type Nullable
id String No
name String No
description String | Null Yes
color String | Null Yes
level Int No
prices PackagePriceCreateNestedManyWithoutPackageInput No
features FeatureCreateNestedManyWithoutPackagesInput No
promotions PromotionCreateNestedManyWithoutPackagesInput No

PackageUncheckedCreateWithoutPaymentInput

Name Type Nullable
id String No
name String No
description String | Null Yes
color String | Null Yes
level Int No
prices PackagePriceUncheckedCreateNestedManyWithoutPackageInput No
features FeatureUncheckedCreateNestedManyWithoutPackagesInput No
promotions PromotionUncheckedCreateNestedManyWithoutPackagesInput No

PackageCreateOrConnectWithoutPaymentInput

Name Type Nullable
where PackageWhereUniqueInput No
create PackageCreateWithoutPaymentInput | PackageUncheckedCreateWithoutPaymentInput No

UserCreateWithoutPaymentInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
createdAt DateTime No
role RoleCreateNestedOneWithoutUserInput No
country CountryCreateNestedOneWithoutUserInput No
teams TeamCreateNestedManyWithoutUserInput No
assignedTasks TaskCreateNestedManyWithoutAssigneeInput No
createdTasks TaskCreateNestedManyWithoutCreatedByInput No
promotion PromotionCreateNestedManyWithoutCreatedByInput No
createdTemplates BrandTemplateCreateNestedManyWithoutCreatedByInput No
reviewedTemplates BrandTemplateCreateNestedManyWithoutReviewerInput No
clientEdits ClientEditCreateNestedManyWithoutApprovedByInput No

UserUncheckedCreateWithoutPaymentInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
roleId String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
countryId String | Null Yes
createdAt DateTime No
teams TeamUncheckedCreateNestedManyWithoutUserInput No
assignedTasks TaskUncheckedCreateNestedManyWithoutAssigneeInput No
createdTasks TaskUncheckedCreateNestedManyWithoutCreatedByInput No
promotion PromotionUncheckedCreateNestedManyWithoutCreatedByInput No
createdTemplates BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput No
reviewedTemplates BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput No
clientEdits ClientEditUncheckedCreateNestedManyWithoutApprovedByInput No

UserCreateOrConnectWithoutPaymentInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutPaymentInput | UserUncheckedCreateWithoutPaymentInput No


PackageUpdateToOneWithWhereWithoutPaymentInput

Name Type Nullable
where PackageWhereInput No
data PackageUpdateWithoutPaymentInput | PackageUncheckedUpdateWithoutPaymentInput No




UserUpdateToOneWithWhereWithoutPaymentInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutPaymentInput | UserUncheckedUpdateWithoutPaymentInput No

UserUpdateWithoutPaymentInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
role RoleUpdateOneWithoutUserNestedInput No
country CountryUpdateOneWithoutUserNestedInput No
teams TeamUpdateManyWithoutUserNestedInput No
assignedTasks TaskUpdateManyWithoutAssigneeNestedInput No
createdTasks TaskUpdateManyWithoutCreatedByNestedInput No
promotion PromotionUpdateManyWithoutCreatedByNestedInput No
createdTemplates BrandTemplateUpdateManyWithoutCreatedByNestedInput No
reviewedTemplates BrandTemplateUpdateManyWithoutReviewerNestedInput No
clientEdits ClientEditUpdateManyWithoutApprovedByNestedInput No

UserUncheckedUpdateWithoutPaymentInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
roleId String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
teams TeamUncheckedUpdateManyWithoutUserNestedInput No
assignedTasks TaskUncheckedUpdateManyWithoutAssigneeNestedInput No
createdTasks TaskUncheckedUpdateManyWithoutCreatedByNestedInput No
promotion PromotionUncheckedUpdateManyWithoutCreatedByNestedInput No
createdTemplates BrandTemplateUncheckedUpdateManyWithoutCreatedByNestedInput No
reviewedTemplates BrandTemplateUncheckedUpdateManyWithoutReviewerNestedInput No
clientEdits ClientEditUncheckedUpdateManyWithoutApprovedByNestedInput No

IndustryCreateWithoutCategoriesInput

Name Type Nullable
id String No
name String No
promotions PromotionCreateNestedManyWithoutIndustriesInput No
features FeatureCreateNestedManyWithoutIndustriesInput No

IndustryUncheckedCreateWithoutCategoriesInput

Name Type Nullable
id String No
name String No
promotions PromotionUncheckedCreateNestedManyWithoutIndustriesInput No
features FeatureUncheckedCreateNestedManyWithoutIndustriesInput No

IndustryCreateOrConnectWithoutCategoriesInput

Name Type Nullable
where IndustryWhereUniqueInput No
create IndustryCreateWithoutCategoriesInput | IndustryUncheckedCreateWithoutCategoriesInput No

BrandTemplateCreateWithoutCategoryInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes
image ImageCreateNestedOneWithoutBrandTemplateInput No
country CountryCreateNestedOneWithoutBrandTemplateInput No
telNumbers TelCreateNestedManyWithoutBrandTemplateInput No
createdBy UserCreateNestedOneWithoutCreatedTemplatesInput No
reviewer UserCreateNestedOneWithoutReviewedTemplatesInput No
client_edits ClientEditCreateNestedManyWithoutBrandTemplateInput No
implementationRatings ClientRatingCreateNestedManyWithoutBrandTemplateInput No

BrandTemplateUncheckedCreateWithoutCategoryInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
imageId String | Null Yes
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
countryId String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdById String | Null Yes
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
reviewerId String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes
telNumbers TelUncheckedCreateNestedManyWithoutBrandTemplateInput No
client_edits ClientEditUncheckedCreateNestedManyWithoutBrandTemplateInput No
implementationRatings ClientRatingUncheckedCreateNestedManyWithoutBrandTemplateInput No

BrandTemplateCreateOrConnectWithoutCategoryInput

Name Type Nullable
where BrandTemplateWhereUniqueInput No
create BrandTemplateCreateWithoutCategoryInput | BrandTemplateUncheckedCreateWithoutCategoryInput No

BrandTemplateCreateManyCategoryInputEnvelope

Name Type Nullable
data BrandTemplateCreateManyCategoryInput | BrandTemplateCreateManyCategoryInput[] No
skipDuplicates Boolean No


IndustryUpdateWithWhereUniqueWithoutCategoriesInput

Name Type Nullable
where IndustryWhereUniqueInput No
data IndustryUpdateWithoutCategoriesInput | IndustryUncheckedUpdateWithoutCategoriesInput No

IndustryUpdateManyWithWhereWithoutCategoriesInput

Name Type Nullable
where IndustryScalarWhereInput No
data IndustryUpdateManyMutationInput | IndustryUncheckedUpdateManyWithoutCategoriesInput No


BrandTemplateUpdateWithWhereUniqueWithoutCategoryInput

Name Type Nullable
where BrandTemplateWhereUniqueInput No
data BrandTemplateUpdateWithoutCategoryInput | BrandTemplateUncheckedUpdateWithoutCategoryInput No

BrandTemplateUpdateManyWithWhereWithoutCategoryInput

Name Type Nullable
where BrandTemplateScalarWhereInput No
data BrandTemplateUpdateManyMutationInput | BrandTemplateUncheckedUpdateManyWithoutCategoryInput No

BrandTemplateCreateWithoutImageInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes
category CategoryCreateNestedOneWithoutBrandTemplateInput No
country CountryCreateNestedOneWithoutBrandTemplateInput No
telNumbers TelCreateNestedManyWithoutBrandTemplateInput No
createdBy UserCreateNestedOneWithoutCreatedTemplatesInput No
reviewer UserCreateNestedOneWithoutReviewedTemplatesInput No
client_edits ClientEditCreateNestedManyWithoutBrandTemplateInput No
implementationRatings ClientRatingCreateNestedManyWithoutBrandTemplateInput No

BrandTemplateUncheckedCreateWithoutImageInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
categoryId String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
countryId String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdById String | Null Yes
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
reviewerId String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes
telNumbers TelUncheckedCreateNestedManyWithoutBrandTemplateInput No
client_edits ClientEditUncheckedCreateNestedManyWithoutBrandTemplateInput No
implementationRatings ClientRatingUncheckedCreateNestedManyWithoutBrandTemplateInput No

BrandTemplateCreateOrConnectWithoutImageInput

Name Type Nullable
where BrandTemplateWhereUniqueInput No
create BrandTemplateCreateWithoutImageInput | BrandTemplateUncheckedCreateWithoutImageInput No

BrandTemplateCreateManyImageInputEnvelope

Name Type Nullable
data BrandTemplateCreateManyImageInput | BrandTemplateCreateManyImageInput[] No
skipDuplicates Boolean No


BrandTemplateUpdateWithWhereUniqueWithoutImageInput

Name Type Nullable
where BrandTemplateWhereUniqueInput No
data BrandTemplateUpdateWithoutImageInput | BrandTemplateUncheckedUpdateWithoutImageInput No

BrandTemplateUpdateManyWithWhereWithoutImageInput

Name Type Nullable
where BrandTemplateScalarWhereInput No
data BrandTemplateUpdateManyMutationInput | BrandTemplateUncheckedUpdateManyWithoutImageInput No

UserCreateWithoutClientEditsInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
createdAt DateTime No
role RoleCreateNestedOneWithoutUserInput No
country CountryCreateNestedOneWithoutUserInput No
teams TeamCreateNestedManyWithoutUserInput No
assignedTasks TaskCreateNestedManyWithoutAssigneeInput No
createdTasks TaskCreateNestedManyWithoutCreatedByInput No
promotion PromotionCreateNestedManyWithoutCreatedByInput No
payment PaymentCreateNestedManyWithoutCashierInput No
createdTemplates BrandTemplateCreateNestedManyWithoutCreatedByInput No
reviewedTemplates BrandTemplateCreateNestedManyWithoutReviewerInput No

UserUncheckedCreateWithoutClientEditsInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
roleId String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
countryId String | Null Yes
createdAt DateTime No
teams TeamUncheckedCreateNestedManyWithoutUserInput No
assignedTasks TaskUncheckedCreateNestedManyWithoutAssigneeInput No
createdTasks TaskUncheckedCreateNestedManyWithoutCreatedByInput No
promotion PromotionUncheckedCreateNestedManyWithoutCreatedByInput No
payment PaymentUncheckedCreateNestedManyWithoutCashierInput No
createdTemplates BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput No
reviewedTemplates BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput No

UserCreateOrConnectWithoutClientEditsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutClientEditsInput | UserUncheckedCreateWithoutClientEditsInput No

BrandTemplateCreateWithoutClient_editsInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes
image ImageCreateNestedOneWithoutBrandTemplateInput No
category CategoryCreateNestedOneWithoutBrandTemplateInput No
country CountryCreateNestedOneWithoutBrandTemplateInput No
telNumbers TelCreateNestedManyWithoutBrandTemplateInput No
createdBy UserCreateNestedOneWithoutCreatedTemplatesInput No
reviewer UserCreateNestedOneWithoutReviewedTemplatesInput No
implementationRatings ClientRatingCreateNestedManyWithoutBrandTemplateInput No

BrandTemplateUncheckedCreateWithoutClient_editsInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
imageId String | Null Yes
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
categoryId String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
countryId String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdById String | Null Yes
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
reviewerId String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes
telNumbers TelUncheckedCreateNestedManyWithoutBrandTemplateInput No
implementationRatings ClientRatingUncheckedCreateNestedManyWithoutBrandTemplateInput No

BrandTemplateCreateOrConnectWithoutClient_editsInput

Name Type Nullable
where BrandTemplateWhereUniqueInput No
create BrandTemplateCreateWithoutClient_editsInput | BrandTemplateUncheckedCreateWithoutClient_editsInput No


UserUpdateToOneWithWhereWithoutClientEditsInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutClientEditsInput | UserUncheckedUpdateWithoutClientEditsInput No

UserUpdateWithoutClientEditsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
role RoleUpdateOneWithoutUserNestedInput No
country CountryUpdateOneWithoutUserNestedInput No
teams TeamUpdateManyWithoutUserNestedInput No
assignedTasks TaskUpdateManyWithoutAssigneeNestedInput No
createdTasks TaskUpdateManyWithoutCreatedByNestedInput No
promotion PromotionUpdateManyWithoutCreatedByNestedInput No
payment PaymentUpdateManyWithoutCashierNestedInput No
createdTemplates BrandTemplateUpdateManyWithoutCreatedByNestedInput No
reviewedTemplates BrandTemplateUpdateManyWithoutReviewerNestedInput No

UserUncheckedUpdateWithoutClientEditsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
roleId String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
teams TeamUncheckedUpdateManyWithoutUserNestedInput No
assignedTasks TaskUncheckedUpdateManyWithoutAssigneeNestedInput No
createdTasks TaskUncheckedUpdateManyWithoutCreatedByNestedInput No
promotion PromotionUncheckedUpdateManyWithoutCreatedByNestedInput No
payment PaymentUncheckedUpdateManyWithoutCashierNestedInput No
createdTemplates BrandTemplateUncheckedUpdateManyWithoutCreatedByNestedInput No
reviewedTemplates BrandTemplateUncheckedUpdateManyWithoutReviewerNestedInput No


BrandTemplateUpdateToOneWithWhereWithoutClient_editsInput

Name Type Nullable
where BrandTemplateWhereInput No
data BrandTemplateUpdateWithoutClient_editsInput | BrandTemplateUncheckedUpdateWithoutClient_editsInput No

BrandTemplateUpdateWithoutClient_editsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
image ImageUpdateOneWithoutBrandTemplateNestedInput No
category CategoryUpdateOneRequiredWithoutBrandTemplateNestedInput No
country CountryUpdateOneWithoutBrandTemplateNestedInput No
telNumbers TelUpdateManyWithoutBrandTemplateNestedInput No
createdBy UserUpdateOneWithoutCreatedTemplatesNestedInput No
reviewer UserUpdateOneWithoutReviewedTemplatesNestedInput No
implementationRatings ClientRatingUpdateManyWithoutBrandTemplateNestedInput No

BrandTemplateUncheckedUpdateWithoutClient_editsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
categoryId String | StringFieldUpdateOperationsInput No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewerId String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
telNumbers TelUncheckedUpdateManyWithoutBrandTemplateNestedInput No
implementationRatings ClientRatingUncheckedUpdateManyWithoutBrandTemplateNestedInput No

BrandTemplateCreateWithoutImplementationRatingsInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes
image ImageCreateNestedOneWithoutBrandTemplateInput No
category CategoryCreateNestedOneWithoutBrandTemplateInput No
country CountryCreateNestedOneWithoutBrandTemplateInput No
telNumbers TelCreateNestedManyWithoutBrandTemplateInput No
createdBy UserCreateNestedOneWithoutCreatedTemplatesInput No
reviewer UserCreateNestedOneWithoutReviewedTemplatesInput No
client_edits ClientEditCreateNestedManyWithoutBrandTemplateInput No

BrandTemplateUncheckedCreateWithoutImplementationRatingsInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
imageId String | Null Yes
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
categoryId String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
countryId String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdById String | Null Yes
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
reviewerId String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes
telNumbers TelUncheckedCreateNestedManyWithoutBrandTemplateInput No
client_edits ClientEditUncheckedCreateNestedManyWithoutBrandTemplateInput No

BrandTemplateCreateOrConnectWithoutImplementationRatingsInput

Name Type Nullable
where BrandTemplateWhereUniqueInput No
create BrandTemplateCreateWithoutImplementationRatingsInput | BrandTemplateUncheckedCreateWithoutImplementationRatingsInput No


BrandTemplateUpdateToOneWithWhereWithoutImplementationRatingsInput

Name Type Nullable
where BrandTemplateWhereInput No
data BrandTemplateUpdateWithoutImplementationRatingsInput | BrandTemplateUncheckedUpdateWithoutImplementationRatingsInput No

BrandTemplateUpdateWithoutImplementationRatingsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
image ImageUpdateOneWithoutBrandTemplateNestedInput No
category CategoryUpdateOneRequiredWithoutBrandTemplateNestedInput No
country CountryUpdateOneWithoutBrandTemplateNestedInput No
telNumbers TelUpdateManyWithoutBrandTemplateNestedInput No
createdBy UserUpdateOneWithoutCreatedTemplatesNestedInput No
reviewer UserUpdateOneWithoutReviewedTemplatesNestedInput No
client_edits ClientEditUpdateManyWithoutBrandTemplateNestedInput No

BrandTemplateUncheckedUpdateWithoutImplementationRatingsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
categoryId String | StringFieldUpdateOperationsInput No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewerId String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
telNumbers TelUncheckedUpdateManyWithoutBrandTemplateNestedInput No
client_edits ClientEditUncheckedUpdateManyWithoutBrandTemplateNestedInput No

BrandTemplateCreateWithoutTelNumbersInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes
image ImageCreateNestedOneWithoutBrandTemplateInput No
category CategoryCreateNestedOneWithoutBrandTemplateInput No
country CountryCreateNestedOneWithoutBrandTemplateInput No
createdBy UserCreateNestedOneWithoutCreatedTemplatesInput No
reviewer UserCreateNestedOneWithoutReviewedTemplatesInput No
client_edits ClientEditCreateNestedManyWithoutBrandTemplateInput No
implementationRatings ClientRatingCreateNestedManyWithoutBrandTemplateInput No

BrandTemplateUncheckedCreateWithoutTelNumbersInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
imageId String | Null Yes
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
categoryId String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
countryId String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdById String | Null Yes
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
reviewerId String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes
client_edits ClientEditUncheckedCreateNestedManyWithoutBrandTemplateInput No
implementationRatings ClientRatingUncheckedCreateNestedManyWithoutBrandTemplateInput No

BrandTemplateCreateOrConnectWithoutTelNumbersInput

Name Type Nullable
where BrandTemplateWhereUniqueInput No
create BrandTemplateCreateWithoutTelNumbersInput | BrandTemplateUncheckedCreateWithoutTelNumbersInput No


BrandTemplateUpdateToOneWithWhereWithoutTelNumbersInput

Name Type Nullable
where BrandTemplateWhereInput No
data BrandTemplateUpdateWithoutTelNumbersInput | BrandTemplateUncheckedUpdateWithoutTelNumbersInput No

BrandTemplateUpdateWithoutTelNumbersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
image ImageUpdateOneWithoutBrandTemplateNestedInput No
category CategoryUpdateOneRequiredWithoutBrandTemplateNestedInput No
country CountryUpdateOneWithoutBrandTemplateNestedInput No
createdBy UserUpdateOneWithoutCreatedTemplatesNestedInput No
reviewer UserUpdateOneWithoutReviewedTemplatesNestedInput No
client_edits ClientEditUpdateManyWithoutBrandTemplateNestedInput No
implementationRatings ClientRatingUpdateManyWithoutBrandTemplateNestedInput No

BrandTemplateUncheckedUpdateWithoutTelNumbersInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
categoryId String | StringFieldUpdateOperationsInput No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewerId String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
client_edits ClientEditUncheckedUpdateManyWithoutBrandTemplateNestedInput No
implementationRatings ClientRatingUncheckedUpdateManyWithoutBrandTemplateNestedInput No

ImageCreateWithoutBrandTemplateInput

Name Type Nullable
id String No
url String No
incomplete Boolean | Null Yes
incompleteMessage String | Null Yes
isTransparent Boolean | Null Yes
side ImageSide No

ImageUncheckedCreateWithoutBrandTemplateInput

Name Type Nullable
id String No
url String No
incomplete Boolean | Null Yes
incompleteMessage String | Null Yes
isTransparent Boolean | Null Yes
side ImageSide No

ImageCreateOrConnectWithoutBrandTemplateInput

Name Type Nullable
where ImageWhereUniqueInput No
create ImageCreateWithoutBrandTemplateInput | ImageUncheckedCreateWithoutBrandTemplateInput No

CategoryCreateWithoutBrandTemplateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
icon String | Null Yes
createdBy String | Null Yes
createdAt DateTime No
industries IndustryCreateNestedManyWithoutCategoriesInput No

CategoryUncheckedCreateWithoutBrandTemplateInput

Name Type Nullable
id String No
name String No
description String | Null Yes
icon String | Null Yes
createdBy String | Null Yes
createdAt DateTime No
industries IndustryUncheckedCreateNestedManyWithoutCategoriesInput No

CategoryCreateOrConnectWithoutBrandTemplateInput

Name Type Nullable
where CategoryWhereUniqueInput No
create CategoryCreateWithoutBrandTemplateInput | CategoryUncheckedCreateWithoutBrandTemplateInput No

CountryCreateWithoutBrandTemplateInput

Name Type Nullable
id String No
name String No
user UserCreateNestedManyWithoutCountryInput No
promotions PromotionCreateNestedManyWithoutCountriesInput No
features FeatureCreateNestedManyWithoutCountriesInput No

CountryUncheckedCreateWithoutBrandTemplateInput

Name Type Nullable
id String No
name String No
user UserUncheckedCreateNestedManyWithoutCountryInput No
promotions PromotionUncheckedCreateNestedManyWithoutCountriesInput No
features FeatureUncheckedCreateNestedManyWithoutCountriesInput No

CountryCreateOrConnectWithoutBrandTemplateInput

Name Type Nullable
where CountryWhereUniqueInput No
create CountryCreateWithoutBrandTemplateInput | CountryUncheckedCreateWithoutBrandTemplateInput No

TelCreateWithoutBrandTemplateInput

Name Type Nullable
id String No
name String No
number String No

TelUncheckedCreateWithoutBrandTemplateInput

Name Type Nullable
id String No
name String No
number String No

TelCreateOrConnectWithoutBrandTemplateInput

Name Type Nullable
where TelWhereUniqueInput No
create TelCreateWithoutBrandTemplateInput | TelUncheckedCreateWithoutBrandTemplateInput No

TelCreateManyBrandTemplateInputEnvelope

Name Type Nullable
data TelCreateManyBrandTemplateInput | TelCreateManyBrandTemplateInput[] No
skipDuplicates Boolean No

UserCreateWithoutCreatedTemplatesInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
createdAt DateTime No
role RoleCreateNestedOneWithoutUserInput No
country CountryCreateNestedOneWithoutUserInput No
teams TeamCreateNestedManyWithoutUserInput No
assignedTasks TaskCreateNestedManyWithoutAssigneeInput No
createdTasks TaskCreateNestedManyWithoutCreatedByInput No
promotion PromotionCreateNestedManyWithoutCreatedByInput No
payment PaymentCreateNestedManyWithoutCashierInput No
reviewedTemplates BrandTemplateCreateNestedManyWithoutReviewerInput No
clientEdits ClientEditCreateNestedManyWithoutApprovedByInput No

UserUncheckedCreateWithoutCreatedTemplatesInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
roleId String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
countryId String | Null Yes
createdAt DateTime No
teams TeamUncheckedCreateNestedManyWithoutUserInput No
assignedTasks TaskUncheckedCreateNestedManyWithoutAssigneeInput No
createdTasks TaskUncheckedCreateNestedManyWithoutCreatedByInput No
promotion PromotionUncheckedCreateNestedManyWithoutCreatedByInput No
payment PaymentUncheckedCreateNestedManyWithoutCashierInput No
reviewedTemplates BrandTemplateUncheckedCreateNestedManyWithoutReviewerInput No
clientEdits ClientEditUncheckedCreateNestedManyWithoutApprovedByInput No

UserCreateOrConnectWithoutCreatedTemplatesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutCreatedTemplatesInput | UserUncheckedCreateWithoutCreatedTemplatesInput No

UserCreateWithoutReviewedTemplatesInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
createdAt DateTime No
role RoleCreateNestedOneWithoutUserInput No
country CountryCreateNestedOneWithoutUserInput No
teams TeamCreateNestedManyWithoutUserInput No
assignedTasks TaskCreateNestedManyWithoutAssigneeInput No
createdTasks TaskCreateNestedManyWithoutCreatedByInput No
promotion PromotionCreateNestedManyWithoutCreatedByInput No
payment PaymentCreateNestedManyWithoutCashierInput No
createdTemplates BrandTemplateCreateNestedManyWithoutCreatedByInput No
clientEdits ClientEditCreateNestedManyWithoutApprovedByInput No

UserUncheckedCreateWithoutReviewedTemplatesInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
roleId String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
countryId String | Null Yes
createdAt DateTime No
teams TeamUncheckedCreateNestedManyWithoutUserInput No
assignedTasks TaskUncheckedCreateNestedManyWithoutAssigneeInput No
createdTasks TaskUncheckedCreateNestedManyWithoutCreatedByInput No
promotion PromotionUncheckedCreateNestedManyWithoutCreatedByInput No
payment PaymentUncheckedCreateNestedManyWithoutCashierInput No
createdTemplates BrandTemplateUncheckedCreateNestedManyWithoutCreatedByInput No
clientEdits ClientEditUncheckedCreateNestedManyWithoutApprovedByInput No

UserCreateOrConnectWithoutReviewedTemplatesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutReviewedTemplatesInput | UserUncheckedCreateWithoutReviewedTemplatesInput No

ClientEditCreateWithoutBrandTemplateInput

Name Type Nullable
id String No
clientId String | Null Yes
action ClientEditAction No
field String No
newValue String No
oldValue String No
approved Boolean | Null Yes
approvedTime DateTime | Null Yes
approvedBy UserCreateNestedOneWithoutClientEditsInput No

ClientEditUncheckedCreateWithoutBrandTemplateInput

Name Type Nullable
id String No
clientId String | Null Yes
action ClientEditAction No
field String No
newValue String No
oldValue String No
approved Boolean | Null Yes
approvedTime DateTime | Null Yes
approvedById String | Null Yes

ClientEditCreateOrConnectWithoutBrandTemplateInput

Name Type Nullable
where ClientEditWhereUniqueInput No
create ClientEditCreateWithoutBrandTemplateInput | ClientEditUncheckedCreateWithoutBrandTemplateInput No

ClientEditCreateManyBrandTemplateInputEnvelope

Name Type Nullable
data ClientEditCreateManyBrandTemplateInput | ClientEditCreateManyBrandTemplateInput[] No
skipDuplicates Boolean No

ClientRatingCreateWithoutBrandTemplateInput

Name Type Nullable
id String No
client_id String No
rating Int No
goodImplematation Boolean | Null Yes
comment String | Null Yes

ClientRatingUncheckedCreateWithoutBrandTemplateInput

Name Type Nullable
id String No
client_id String No
rating Int No
goodImplematation Boolean | Null Yes
comment String | Null Yes

ClientRatingCreateOrConnectWithoutBrandTemplateInput

Name Type Nullable
where ClientRatingWhereUniqueInput No
create ClientRatingCreateWithoutBrandTemplateInput | ClientRatingUncheckedCreateWithoutBrandTemplateInput No

ClientRatingCreateManyBrandTemplateInputEnvelope

Name Type Nullable
data ClientRatingCreateManyBrandTemplateInput | ClientRatingCreateManyBrandTemplateInput[] No
skipDuplicates Boolean No


ImageUpdateToOneWithWhereWithoutBrandTemplateInput

Name Type Nullable
where ImageWhereInput No
data ImageUpdateWithoutBrandTemplateInput | ImageUncheckedUpdateWithoutBrandTemplateInput No

ImageUpdateWithoutBrandTemplateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
incomplete Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
incompleteMessage String | NullableStringFieldUpdateOperationsInput | Null Yes
isTransparent Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
side ImageSide | EnumImageSideFieldUpdateOperationsInput No

ImageUncheckedUpdateWithoutBrandTemplateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
incomplete Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
incompleteMessage String | NullableStringFieldUpdateOperationsInput | Null Yes
isTransparent Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
side ImageSide | EnumImageSideFieldUpdateOperationsInput No


CategoryUpdateToOneWithWhereWithoutBrandTemplateInput

Name Type Nullable
where CategoryWhereInput No
data CategoryUpdateWithoutBrandTemplateInput | CategoryUncheckedUpdateWithoutBrandTemplateInput No

CategoryUpdateWithoutBrandTemplateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
icon String | NullableStringFieldUpdateOperationsInput | Null Yes
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
industries IndustryUpdateManyWithoutCategoriesNestedInput No

CategoryUncheckedUpdateWithoutBrandTemplateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
icon String | NullableStringFieldUpdateOperationsInput | Null Yes
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
industries IndustryUncheckedUpdateManyWithoutCategoriesNestedInput No


CountryUpdateToOneWithWhereWithoutBrandTemplateInput

Name Type Nullable
where CountryWhereInput No
data CountryUpdateWithoutBrandTemplateInput | CountryUncheckedUpdateWithoutBrandTemplateInput No

CountryUpdateWithoutBrandTemplateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
user UserUpdateManyWithoutCountryNestedInput No
promotions PromotionUpdateManyWithoutCountriesNestedInput No
features FeatureUpdateManyWithoutCountriesNestedInput No



TelUpdateWithWhereUniqueWithoutBrandTemplateInput

Name Type Nullable
where TelWhereUniqueInput No
data TelUpdateWithoutBrandTemplateInput | TelUncheckedUpdateWithoutBrandTemplateInput No

TelUpdateManyWithWhereWithoutBrandTemplateInput

Name Type Nullable
where TelScalarWhereInput No
data TelUpdateManyMutationInput | TelUncheckedUpdateManyWithoutBrandTemplateInput No

TelScalarWhereInput

Name Type Nullable
AND TelScalarWhereInput | TelScalarWhereInput[] No
OR TelScalarWhereInput[] No
NOT TelScalarWhereInput | TelScalarWhereInput[] No
id StringFilter | String No
name StringFilter | String No
number StringFilter | String No
brandTemplateId StringFilter | String No


UserUpdateToOneWithWhereWithoutCreatedTemplatesInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutCreatedTemplatesInput | UserUncheckedUpdateWithoutCreatedTemplatesInput No

UserUpdateWithoutCreatedTemplatesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
role RoleUpdateOneWithoutUserNestedInput No
country CountryUpdateOneWithoutUserNestedInput No
teams TeamUpdateManyWithoutUserNestedInput No
assignedTasks TaskUpdateManyWithoutAssigneeNestedInput No
createdTasks TaskUpdateManyWithoutCreatedByNestedInput No
promotion PromotionUpdateManyWithoutCreatedByNestedInput No
payment PaymentUpdateManyWithoutCashierNestedInput No
reviewedTemplates BrandTemplateUpdateManyWithoutReviewerNestedInput No
clientEdits ClientEditUpdateManyWithoutApprovedByNestedInput No

UserUncheckedUpdateWithoutCreatedTemplatesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
roleId String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
teams TeamUncheckedUpdateManyWithoutUserNestedInput No
assignedTasks TaskUncheckedUpdateManyWithoutAssigneeNestedInput No
createdTasks TaskUncheckedUpdateManyWithoutCreatedByNestedInput No
promotion PromotionUncheckedUpdateManyWithoutCreatedByNestedInput No
payment PaymentUncheckedUpdateManyWithoutCashierNestedInput No
reviewedTemplates BrandTemplateUncheckedUpdateManyWithoutReviewerNestedInput No
clientEdits ClientEditUncheckedUpdateManyWithoutApprovedByNestedInput No


UserUpdateToOneWithWhereWithoutReviewedTemplatesInput

Name Type Nullable
where UserWhereInput No
data UserUpdateWithoutReviewedTemplatesInput | UserUncheckedUpdateWithoutReviewedTemplatesInput No

UserUpdateWithoutReviewedTemplatesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
role RoleUpdateOneWithoutUserNestedInput No
country CountryUpdateOneWithoutUserNestedInput No
teams TeamUpdateManyWithoutUserNestedInput No
assignedTasks TaskUpdateManyWithoutAssigneeNestedInput No
createdTasks TaskUpdateManyWithoutCreatedByNestedInput No
promotion PromotionUpdateManyWithoutCreatedByNestedInput No
payment PaymentUpdateManyWithoutCashierNestedInput No
createdTemplates BrandTemplateUpdateManyWithoutCreatedByNestedInput No
clientEdits ClientEditUpdateManyWithoutApprovedByNestedInput No

UserUncheckedUpdateWithoutReviewedTemplatesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
roleId String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
teams TeamUncheckedUpdateManyWithoutUserNestedInput No
assignedTasks TaskUncheckedUpdateManyWithoutAssigneeNestedInput No
createdTasks TaskUncheckedUpdateManyWithoutCreatedByNestedInput No
promotion PromotionUncheckedUpdateManyWithoutCreatedByNestedInput No
payment PaymentUncheckedUpdateManyWithoutCashierNestedInput No
createdTemplates BrandTemplateUncheckedUpdateManyWithoutCreatedByNestedInput No
clientEdits ClientEditUncheckedUpdateManyWithoutApprovedByNestedInput No


ClientEditUpdateWithWhereUniqueWithoutBrandTemplateInput

Name Type Nullable
where ClientEditWhereUniqueInput No
data ClientEditUpdateWithoutBrandTemplateInput | ClientEditUncheckedUpdateWithoutBrandTemplateInput No

ClientEditUpdateManyWithWhereWithoutBrandTemplateInput

Name Type Nullable
where ClientEditScalarWhereInput No
data ClientEditUpdateManyMutationInput | ClientEditUncheckedUpdateManyWithoutBrandTemplateInput No


ClientRatingUpdateWithWhereUniqueWithoutBrandTemplateInput

Name Type Nullable
where ClientRatingWhereUniqueInput No
data ClientRatingUpdateWithoutBrandTemplateInput | ClientRatingUncheckedUpdateWithoutBrandTemplateInput No

ClientRatingUpdateManyWithWhereWithoutBrandTemplateInput

Name Type Nullable
where ClientRatingScalarWhereInput No
data ClientRatingUpdateManyMutationInput | ClientRatingUncheckedUpdateManyWithoutBrandTemplateInput No

ClientRatingScalarWhereInput

Name Type Nullable
AND ClientRatingScalarWhereInput | ClientRatingScalarWhereInput[] No
OR ClientRatingScalarWhereInput[] No
NOT ClientRatingScalarWhereInput | ClientRatingScalarWhereInput[] No
id StringFilter | String No
client_id StringFilter | String No
rating IntFilter | Int No
goodImplematation BoolNullableFilter | Boolean | Null Yes
comment StringNullableFilter | String | Null Yes
brandTemplateId StringFilter | String No


PromotionUncheckedUpdateWithoutIndustriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | DateTimeFieldUpdateOperationsInput No
endDate DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
features FeatureUncheckedUpdateManyWithoutPromotionsNestedInput No
countries CountryUncheckedUpdateManyWithoutPromotionsNestedInput No
packages PackageUncheckedUpdateManyWithoutPromotionsNestedInput No

PromotionUncheckedUpdateManyWithoutIndustriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | DateTimeFieldUpdateOperationsInput No
endDate DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

CategoryUpdateWithoutIndustriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
icon String | NullableStringFieldUpdateOperationsInput | Null Yes
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
brandTemplate BrandTemplateUpdateManyWithoutCategoryNestedInput No

CategoryUncheckedUpdateWithoutIndustriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
icon String | NullableStringFieldUpdateOperationsInput | Null Yes
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
brandTemplate BrandTemplateUncheckedUpdateManyWithoutCategoryNestedInput No

CategoryUncheckedUpdateManyWithoutIndustriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
icon String | NullableStringFieldUpdateOperationsInput | Null Yes
createdBy String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No



FeatureUncheckedUpdateManyWithoutIndustriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
type FeatureType | EnumFeatureTypeFieldUpdateOperationsInput No

UserCreateManyCountryInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
roleId String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
createdAt DateTime No

BrandTemplateCreateManyCountryInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
imageId String | Null Yes
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
categoryId String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdById String | Null Yes
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
reviewerId String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes

UserUpdateWithoutCountryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
role RoleUpdateOneWithoutUserNestedInput No
teams TeamUpdateManyWithoutUserNestedInput No
assignedTasks TaskUpdateManyWithoutAssigneeNestedInput No
createdTasks TaskUpdateManyWithoutCreatedByNestedInput No
promotion PromotionUpdateManyWithoutCreatedByNestedInput No
payment PaymentUpdateManyWithoutCashierNestedInput No
createdTemplates BrandTemplateUpdateManyWithoutCreatedByNestedInput No
reviewedTemplates BrandTemplateUpdateManyWithoutReviewerNestedInput No
clientEdits ClientEditUpdateManyWithoutApprovedByNestedInput No

UserUncheckedUpdateWithoutCountryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
roleId String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
teams TeamUncheckedUpdateManyWithoutUserNestedInput No
assignedTasks TaskUncheckedUpdateManyWithoutAssigneeNestedInput No
createdTasks TaskUncheckedUpdateManyWithoutCreatedByNestedInput No
promotion PromotionUncheckedUpdateManyWithoutCreatedByNestedInput No
payment PaymentUncheckedUpdateManyWithoutCashierNestedInput No
createdTemplates BrandTemplateUncheckedUpdateManyWithoutCreatedByNestedInput No
reviewedTemplates BrandTemplateUncheckedUpdateManyWithoutReviewerNestedInput No
clientEdits ClientEditUncheckedUpdateManyWithoutApprovedByNestedInput No

UserUncheckedUpdateManyWithoutCountryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
roleId String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No


PromotionUncheckedUpdateWithoutCountriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | DateTimeFieldUpdateOperationsInput No
endDate DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
features FeatureUncheckedUpdateManyWithoutPromotionsNestedInput No
industries IndustryUncheckedUpdateManyWithoutPromotionsNestedInput No
packages PackageUncheckedUpdateManyWithoutPromotionsNestedInput No

PromotionUncheckedUpdateManyWithoutCountriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | DateTimeFieldUpdateOperationsInput No
endDate DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

BrandTemplateUpdateWithoutCountryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
image ImageUpdateOneWithoutBrandTemplateNestedInput No
category CategoryUpdateOneRequiredWithoutBrandTemplateNestedInput No
telNumbers TelUpdateManyWithoutBrandTemplateNestedInput No
createdBy UserUpdateOneWithoutCreatedTemplatesNestedInput No
reviewer UserUpdateOneWithoutReviewedTemplatesNestedInput No
client_edits ClientEditUpdateManyWithoutBrandTemplateNestedInput No
implementationRatings ClientRatingUpdateManyWithoutBrandTemplateNestedInput No

BrandTemplateUncheckedUpdateWithoutCountryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
categoryId String | StringFieldUpdateOperationsInput No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewerId String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
telNumbers TelUncheckedUpdateManyWithoutBrandTemplateNestedInput No
client_edits ClientEditUncheckedUpdateManyWithoutBrandTemplateNestedInput No
implementationRatings ClientRatingUncheckedUpdateManyWithoutBrandTemplateNestedInput No

BrandTemplateUncheckedUpdateManyWithoutCountryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
categoryId String | StringFieldUpdateOperationsInput No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewerId String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes



FeatureUncheckedUpdateManyWithoutCountriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
type FeatureType | EnumFeatureTypeFieldUpdateOperationsInput No

PermissionsCreateManyRoleInput

Name Type Nullable
id String No
accessLevel PermissionTypes No
domainId String No

UserCreateManyRoleInput

Name Type Nullable
id String No
name String No
email String No
password String | Null Yes
token String | Null Yes
fcm_token String | Null Yes
avatar String | Null Yes
suspendendAt DateTime | Null Yes
status UserStatus | Null Yes
streetAddress String | Null Yes
city String | Null Yes
cell String | Null Yes
tell String | Null Yes
verificationCode Int | Null Yes
countryId String | Null Yes
createdAt DateTime No

PermissionsUpdateWithoutRoleInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
accessLevel PermissionTypes | EnumPermissionTypesFieldUpdateOperationsInput No
domain DomainUpdateOneRequiredWithoutPermissionsNestedInput No

PermissionsUncheckedUpdateWithoutRoleInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
accessLevel PermissionTypes | EnumPermissionTypesFieldUpdateOperationsInput No
domainId String | StringFieldUpdateOperationsInput No

PermissionsUncheckedUpdateManyWithoutRoleInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
accessLevel PermissionTypes | EnumPermissionTypesFieldUpdateOperationsInput No
domainId String | StringFieldUpdateOperationsInput No

UserUpdateWithoutRoleInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
country CountryUpdateOneWithoutUserNestedInput No
teams TeamUpdateManyWithoutUserNestedInput No
assignedTasks TaskUpdateManyWithoutAssigneeNestedInput No
createdTasks TaskUpdateManyWithoutCreatedByNestedInput No
promotion PromotionUpdateManyWithoutCreatedByNestedInput No
payment PaymentUpdateManyWithoutCashierNestedInput No
createdTemplates BrandTemplateUpdateManyWithoutCreatedByNestedInput No
reviewedTemplates BrandTemplateUpdateManyWithoutReviewerNestedInput No
clientEdits ClientEditUpdateManyWithoutApprovedByNestedInput No

UserUncheckedUpdateWithoutRoleInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
teams TeamUncheckedUpdateManyWithoutUserNestedInput No
assignedTasks TaskUncheckedUpdateManyWithoutAssigneeNestedInput No
createdTasks TaskUncheckedUpdateManyWithoutCreatedByNestedInput No
promotion PromotionUncheckedUpdateManyWithoutCreatedByNestedInput No
payment PaymentUncheckedUpdateManyWithoutCashierNestedInput No
createdTemplates BrandTemplateUncheckedUpdateManyWithoutCreatedByNestedInput No
reviewedTemplates BrandTemplateUncheckedUpdateManyWithoutReviewerNestedInput No
clientEdits ClientEditUncheckedUpdateManyWithoutApprovedByNestedInput No

UserUncheckedUpdateManyWithoutRoleInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
token String | NullableStringFieldUpdateOperationsInput | Null Yes
fcm_token String | NullableStringFieldUpdateOperationsInput | Null Yes
avatar String | NullableStringFieldUpdateOperationsInput | Null Yes
suspendendAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
streetAddress String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
cell String | NullableStringFieldUpdateOperationsInput | Null Yes
tell String | NullableStringFieldUpdateOperationsInput | Null Yes
verificationCode Int | NullableIntFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

PermissionsCreateManyDomainInput

Name Type Nullable
id String No
accessLevel PermissionTypes No
roleId String No

PermissionsUpdateWithoutDomainInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
accessLevel PermissionTypes | EnumPermissionTypesFieldUpdateOperationsInput No
role RoleUpdateOneRequiredWithoutPermissionsNestedInput No

PermissionsUncheckedUpdateWithoutDomainInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
accessLevel PermissionTypes | EnumPermissionTypesFieldUpdateOperationsInput No
roleId String | StringFieldUpdateOperationsInput No

PermissionsUncheckedUpdateManyWithoutDomainInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
accessLevel PermissionTypes | EnumPermissionTypesFieldUpdateOperationsInput No
roleId String | StringFieldUpdateOperationsInput No

TeamCreateManyUserInput

Name Type Nullable
id String No
name String No
createdAt DateTime No
leader String No

TaskCreateManyAssigneeInput

Name Type Nullable
id String No
title String No
comments String | Null Yes
createdAt DateTime No
startDate DateTime | Null Yes
dueDate DateTime | Null Yes
priority TaskPriority | Null Yes
stage TaskStage | Null Yes
GoalId String | Null Yes
createdById String | Null Yes

TaskCreateManyCreatedByInput

Name Type Nullable
id String No
title String No
comments String | Null Yes
createdAt DateTime No
startDate DateTime | Null Yes
dueDate DateTime | Null Yes
priority TaskPriority | Null Yes
stage TaskStage | Null Yes
GoalId String | Null Yes
assigneeId String | Null Yes

PromotionCreateManyCreatedByInput

Name Type Nullable
id String No
name String No
description String | Null Yes
startDate DateTime No
endDate DateTime No
createdAt DateTime No

PaymentCreateManyCashierInput

Name Type Nullable
id String No
amount Decimal No
date DateTime No
center String | Null Yes
packageId String No
paymentMethod String No
revoked Boolean | Null Yes
createAt DateTime No

BrandTemplateCreateManyCreatedByInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
imageId String | Null Yes
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
categoryId String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
countryId String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
reviewerId String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes

BrandTemplateCreateManyReviewerInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
imageId String | Null Yes
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
categoryId String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
countryId String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdById String | Null Yes
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes

ClientEditCreateManyApprovedByInput

Name Type Nullable
id String No
clientId String | Null Yes
action ClientEditAction No
field String No
newValue String No
oldValue String No
approved Boolean | Null Yes
approvedTime DateTime | Null Yes
brandTemplateId String No

TeamUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
leader String | StringFieldUpdateOperationsInput No
goals GoalUpdateManyWithoutTeamsNestedInput No

TeamUncheckedUpdateWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
leader String | StringFieldUpdateOperationsInput No
goals GoalUncheckedUpdateManyWithoutTeamsNestedInput No

TeamUncheckedUpdateManyWithoutUserInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
leader String | StringFieldUpdateOperationsInput No


TaskUncheckedUpdateWithoutAssigneeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
comments String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
dueDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
priority TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null Yes
stage TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null Yes
GoalId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes

TaskUncheckedUpdateManyWithoutAssigneeInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
comments String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
dueDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
priority TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null Yes
stage TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null Yes
GoalId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes


TaskUncheckedUpdateWithoutCreatedByInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
comments String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
dueDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
priority TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null Yes
stage TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null Yes
GoalId String | NullableStringFieldUpdateOperationsInput | Null Yes
assigneeId String | NullableStringFieldUpdateOperationsInput | Null Yes

TaskUncheckedUpdateManyWithoutCreatedByInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
comments String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
dueDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
priority TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null Yes
stage TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null Yes
GoalId String | NullableStringFieldUpdateOperationsInput | Null Yes
assigneeId String | NullableStringFieldUpdateOperationsInput | Null Yes



PromotionUncheckedUpdateManyWithoutCreatedByInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | DateTimeFieldUpdateOperationsInput No
endDate DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

PaymentUpdateWithoutCashierInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
center String | NullableStringFieldUpdateOperationsInput | Null Yes
paymentMethod String | StringFieldUpdateOperationsInput No
revoked Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No
package PackageUpdateOneRequiredWithoutPaymentNestedInput No

PaymentUncheckedUpdateWithoutCashierInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
center String | NullableStringFieldUpdateOperationsInput | Null Yes
packageId String | StringFieldUpdateOperationsInput No
paymentMethod String | StringFieldUpdateOperationsInput No
revoked Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No

PaymentUncheckedUpdateManyWithoutCashierInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
center String | NullableStringFieldUpdateOperationsInput | Null Yes
packageId String | StringFieldUpdateOperationsInput No
paymentMethod String | StringFieldUpdateOperationsInput No
revoked Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No

BrandTemplateUpdateWithoutCreatedByInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
image ImageUpdateOneWithoutBrandTemplateNestedInput No
category CategoryUpdateOneRequiredWithoutBrandTemplateNestedInput No
country CountryUpdateOneWithoutBrandTemplateNestedInput No
telNumbers TelUpdateManyWithoutBrandTemplateNestedInput No
reviewer UserUpdateOneWithoutReviewedTemplatesNestedInput No
client_edits ClientEditUpdateManyWithoutBrandTemplateNestedInput No
implementationRatings ClientRatingUpdateManyWithoutBrandTemplateNestedInput No

BrandTemplateUncheckedUpdateWithoutCreatedByInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
categoryId String | StringFieldUpdateOperationsInput No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewerId String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
telNumbers TelUncheckedUpdateManyWithoutBrandTemplateNestedInput No
client_edits ClientEditUncheckedUpdateManyWithoutBrandTemplateNestedInput No
implementationRatings ClientRatingUncheckedUpdateManyWithoutBrandTemplateNestedInput No

BrandTemplateUncheckedUpdateManyWithoutCreatedByInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
categoryId String | StringFieldUpdateOperationsInput No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewerId String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes

BrandTemplateUpdateWithoutReviewerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
image ImageUpdateOneWithoutBrandTemplateNestedInput No
category CategoryUpdateOneRequiredWithoutBrandTemplateNestedInput No
country CountryUpdateOneWithoutBrandTemplateNestedInput No
telNumbers TelUpdateManyWithoutBrandTemplateNestedInput No
createdBy UserUpdateOneWithoutCreatedTemplatesNestedInput No
client_edits ClientEditUpdateManyWithoutBrandTemplateNestedInput No
implementationRatings ClientRatingUpdateManyWithoutBrandTemplateNestedInput No

BrandTemplateUncheckedUpdateWithoutReviewerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
categoryId String | StringFieldUpdateOperationsInput No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
telNumbers TelUncheckedUpdateManyWithoutBrandTemplateNestedInput No
client_edits ClientEditUncheckedUpdateManyWithoutBrandTemplateNestedInput No
implementationRatings ClientRatingUncheckedUpdateManyWithoutBrandTemplateNestedInput No

BrandTemplateUncheckedUpdateManyWithoutReviewerInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
categoryId String | StringFieldUpdateOperationsInput No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes

ClientEditUpdateWithoutApprovedByInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
clientId String | NullableStringFieldUpdateOperationsInput | Null Yes
action ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput No
field String | StringFieldUpdateOperationsInput No
newValue String | StringFieldUpdateOperationsInput No
oldValue String | StringFieldUpdateOperationsInput No
approved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
approvedTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
brandTemplate BrandTemplateUpdateOneRequiredWithoutClient_editsNestedInput No

ClientEditUncheckedUpdateWithoutApprovedByInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
clientId String | NullableStringFieldUpdateOperationsInput | Null Yes
action ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput No
field String | StringFieldUpdateOperationsInput No
newValue String | StringFieldUpdateOperationsInput No
oldValue String | StringFieldUpdateOperationsInput No
approved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
approvedTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
brandTemplateId String | StringFieldUpdateOperationsInput No

ClientEditUncheckedUpdateManyWithoutApprovedByInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
clientId String | NullableStringFieldUpdateOperationsInput | Null Yes
action ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput No
field String | StringFieldUpdateOperationsInput No
newValue String | StringFieldUpdateOperationsInput No
oldValue String | StringFieldUpdateOperationsInput No
approved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
approvedTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
brandTemplateId String | StringFieldUpdateOperationsInput No

GoalUpdateWithoutTeamsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
deadline DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
active Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isComplete Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
tasks TaskUpdateManyWithoutGoalNestedInput No

GoalUncheckedUpdateWithoutTeamsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
deadline DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
active Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isComplete Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
tasks TaskUncheckedUpdateManyWithoutGoalNestedInput No

GoalUncheckedUpdateManyWithoutTeamsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
deadline DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
active Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isComplete Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes

TaskCreateManyGoalInput

Name Type Nullable
id String No
title String No
comments String | Null Yes
createdAt DateTime No
startDate DateTime | Null Yes
dueDate DateTime | Null Yes
priority TaskPriority | Null Yes
stage TaskStage | Null Yes
assigneeId String | Null Yes
createdById String | Null Yes

TeamUpdateWithoutGoalsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
leader String | StringFieldUpdateOperationsInput No
user UserUpdateOneWithoutTeamsNestedInput No

TeamUncheckedUpdateWithoutGoalsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
leader String | StringFieldUpdateOperationsInput No
userId String | NullableStringFieldUpdateOperationsInput | Null Yes

TeamUncheckedUpdateManyWithoutGoalsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
leader String | StringFieldUpdateOperationsInput No
userId String | NullableStringFieldUpdateOperationsInput | Null Yes


TaskUncheckedUpdateWithoutGoalInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
comments String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
dueDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
priority TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null Yes
stage TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null Yes
assigneeId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes

TaskUncheckedUpdateManyWithoutGoalInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
comments String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
startDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
dueDate DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
priority TaskPriority | NullableEnumTaskPriorityFieldUpdateOperationsInput | Null Yes
stage TaskStage | NullableEnumTaskStageFieldUpdateOperationsInput | Null Yes
assigneeId String | NullableStringFieldUpdateOperationsInput | Null Yes
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes

IndustryUpdateWithoutFeaturesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
promotions PromotionUpdateManyWithoutIndustriesNestedInput No
categories CategoryUpdateManyWithoutIndustriesNestedInput No

IndustryUncheckedUpdateWithoutFeaturesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
promotions PromotionUncheckedUpdateManyWithoutIndustriesNestedInput No
categories CategoryUncheckedUpdateManyWithoutIndustriesNestedInput No

IndustryUncheckedUpdateManyWithoutFeaturesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No



CountryUncheckedUpdateManyWithoutFeaturesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No


PromotionUncheckedUpdateWithoutFeaturesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | DateTimeFieldUpdateOperationsInput No
endDate DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
industries IndustryUncheckedUpdateManyWithoutPromotionsNestedInput No
countries CountryUncheckedUpdateManyWithoutPromotionsNestedInput No
packages PackageUncheckedUpdateManyWithoutPromotionsNestedInput No

PromotionUncheckedUpdateManyWithoutFeaturesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | DateTimeFieldUpdateOperationsInput No
endDate DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No



PackageUncheckedUpdateManyWithoutFeaturesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
level Int | IntFieldUpdateOperationsInput No

PackagePriceCreateManyPackageInput

Name Type Nullable
id String No
duration Float No
amount Float No
extentionTime Float | Null Yes

PaymentCreateManyPackageInput

Name Type Nullable
id String No
amount Decimal No
date DateTime No
center String | Null Yes
paymentMethod String No
cashierId String No
revoked Boolean | Null Yes
createAt DateTime No

PackagePriceUpdateWithoutPackageInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
duration Float | FloatFieldUpdateOperationsInput No
amount Float | FloatFieldUpdateOperationsInput No
extentionTime Float | NullableFloatFieldUpdateOperationsInput | Null Yes

PackagePriceUncheckedUpdateWithoutPackageInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
duration Float | FloatFieldUpdateOperationsInput No
amount Float | FloatFieldUpdateOperationsInput No
extentionTime Float | NullableFloatFieldUpdateOperationsInput | Null Yes

PackagePriceUncheckedUpdateManyWithoutPackageInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
duration Float | FloatFieldUpdateOperationsInput No
amount Float | FloatFieldUpdateOperationsInput No
extentionTime Float | NullableFloatFieldUpdateOperationsInput | Null Yes



FeatureUncheckedUpdateManyWithoutPackagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
type FeatureType | EnumFeatureTypeFieldUpdateOperationsInput No


PromotionUncheckedUpdateWithoutPackagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | DateTimeFieldUpdateOperationsInput No
endDate DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
features FeatureUncheckedUpdateManyWithoutPromotionsNestedInput No
industries IndustryUncheckedUpdateManyWithoutPromotionsNestedInput No
countries CountryUncheckedUpdateManyWithoutPromotionsNestedInput No

PromotionUncheckedUpdateManyWithoutPackagesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
startDate DateTime | DateTimeFieldUpdateOperationsInput No
endDate DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No

PaymentUpdateWithoutPackageInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
center String | NullableStringFieldUpdateOperationsInput | Null Yes
paymentMethod String | StringFieldUpdateOperationsInput No
revoked Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No
cashier UserUpdateOneRequiredWithoutPaymentNestedInput No

PaymentUncheckedUpdateWithoutPackageInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
center String | NullableStringFieldUpdateOperationsInput | Null Yes
paymentMethod String | StringFieldUpdateOperationsInput No
cashierId String | StringFieldUpdateOperationsInput No
revoked Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No

PaymentUncheckedUpdateManyWithoutPackageInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
date DateTime | DateTimeFieldUpdateOperationsInput No
center String | NullableStringFieldUpdateOperationsInput | Null Yes
paymentMethod String | StringFieldUpdateOperationsInput No
cashierId String | StringFieldUpdateOperationsInput No
revoked Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
createAt DateTime | DateTimeFieldUpdateOperationsInput No



FeatureUncheckedUpdateManyWithoutPromotionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
type FeatureType | EnumFeatureTypeFieldUpdateOperationsInput No

IndustryUpdateWithoutPromotionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
categories CategoryUpdateManyWithoutIndustriesNestedInput No
features FeatureUpdateManyWithoutIndustriesNestedInput No

IndustryUncheckedUpdateWithoutPromotionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
categories CategoryUncheckedUpdateManyWithoutIndustriesNestedInput No
features FeatureUncheckedUpdateManyWithoutIndustriesNestedInput No

IndustryUncheckedUpdateManyWithoutPromotionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

CountryUpdateWithoutPromotionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
user UserUpdateManyWithoutCountryNestedInput No
brandTemplate BrandTemplateUpdateManyWithoutCountryNestedInput No
features FeatureUpdateManyWithoutCountriesNestedInput No


CountryUncheckedUpdateManyWithoutPromotionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No



PackageUncheckedUpdateManyWithoutPromotionsInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
color String | NullableStringFieldUpdateOperationsInput | Null Yes
level Int | IntFieldUpdateOperationsInput No

BrandTemplateCreateManyCategoryInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
imageId String | Null Yes
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
countryId String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdById String | Null Yes
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
reviewerId String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes

IndustryUpdateWithoutCategoriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
promotions PromotionUpdateManyWithoutIndustriesNestedInput No
features FeatureUpdateManyWithoutIndustriesNestedInput No

IndustryUncheckedUpdateWithoutCategoriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
promotions PromotionUncheckedUpdateManyWithoutIndustriesNestedInput No
features FeatureUncheckedUpdateManyWithoutIndustriesNestedInput No

IndustryUncheckedUpdateManyWithoutCategoriesInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No

BrandTemplateUpdateWithoutCategoryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
image ImageUpdateOneWithoutBrandTemplateNestedInput No
country CountryUpdateOneWithoutBrandTemplateNestedInput No
telNumbers TelUpdateManyWithoutBrandTemplateNestedInput No
createdBy UserUpdateOneWithoutCreatedTemplatesNestedInput No
reviewer UserUpdateOneWithoutReviewedTemplatesNestedInput No
client_edits ClientEditUpdateManyWithoutBrandTemplateNestedInput No
implementationRatings ClientRatingUpdateManyWithoutBrandTemplateNestedInput No

BrandTemplateUncheckedUpdateWithoutCategoryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewerId String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
telNumbers TelUncheckedUpdateManyWithoutBrandTemplateNestedInput No
client_edits ClientEditUncheckedUpdateManyWithoutBrandTemplateNestedInput No
implementationRatings ClientRatingUncheckedUpdateManyWithoutBrandTemplateNestedInput No

BrandTemplateUncheckedUpdateManyWithoutCategoryInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
imageId String | NullableStringFieldUpdateOperationsInput | Null Yes
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewerId String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes

BrandTemplateCreateManyImageInput

Name Type Nullable
id String No
name String No
description String | Null Yes
tags BrandTemplateCreatetagsInput | String No
threeDImage String | Null Yes
video String | Null Yes
sizes BrandTemplateCreatesizesInput | String No
units BrandTemplateCreateunitsInput | String No
categoryId String No
addon_categories BrandTemplateCreateaddon_categoriesInput | String No
varieties BrandTemplateCreatevarietiesInput | String No
manufacturer String No
street_address String | Null Yes
city String | Null Yes
countryId String | Null Yes
email String | Null Yes
website String | Null Yes
draftNotes String | Null Yes
draftType String | Null Yes
draftCreatedAt DateTime No
createdById String | Null Yes
createdAt DateTime No
reviewedAt DateTime | Null Yes
reviewNotes String | Null Yes
reviewerId String | Null Yes
inReview Boolean | Null Yes
isApproved Boolean | Null Yes
lastModified DateTime No
creatorClientId String | Null Yes
creatorClientProductId String | Null Yes
fromClientCleanedBy String | Null Yes
hasZeroDepositOrder Boolean | Null Yes
hasTransparencyAll Boolean | Null Yes
isNotForUnder18 Boolean | Null Yes
isDirty Boolean | Null Yes

BrandTemplateUpdateWithoutImageInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
category CategoryUpdateOneRequiredWithoutBrandTemplateNestedInput No
country CountryUpdateOneWithoutBrandTemplateNestedInput No
telNumbers TelUpdateManyWithoutBrandTemplateNestedInput No
createdBy UserUpdateOneWithoutCreatedTemplatesNestedInput No
reviewer UserUpdateOneWithoutReviewedTemplatesNestedInput No
client_edits ClientEditUpdateManyWithoutBrandTemplateNestedInput No
implementationRatings ClientRatingUpdateManyWithoutBrandTemplateNestedInput No

BrandTemplateUncheckedUpdateWithoutImageInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
categoryId String | StringFieldUpdateOperationsInput No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewerId String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
telNumbers TelUncheckedUpdateManyWithoutBrandTemplateNestedInput No
client_edits ClientEditUncheckedUpdateManyWithoutBrandTemplateNestedInput No
implementationRatings ClientRatingUncheckedUpdateManyWithoutBrandTemplateNestedInput No

BrandTemplateUncheckedUpdateManyWithoutImageInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
tags BrandTemplateUpdatetagsInput | String No
threeDImage String | NullableStringFieldUpdateOperationsInput | Null Yes
video String | NullableStringFieldUpdateOperationsInput | Null Yes
sizes BrandTemplateUpdatesizesInput | String No
units BrandTemplateUpdateunitsInput | String No
categoryId String | StringFieldUpdateOperationsInput No
addon_categories BrandTemplateUpdateaddon_categoriesInput | String No
varieties BrandTemplateUpdatevarietiesInput | String No
manufacturer String | StringFieldUpdateOperationsInput No
street_address String | NullableStringFieldUpdateOperationsInput | Null Yes
city String | NullableStringFieldUpdateOperationsInput | Null Yes
countryId String | NullableStringFieldUpdateOperationsInput | Null Yes
email String | NullableStringFieldUpdateOperationsInput | Null Yes
website String | NullableStringFieldUpdateOperationsInput | Null Yes
draftNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
draftType String | NullableStringFieldUpdateOperationsInput | Null Yes
draftCreatedAt DateTime | DateTimeFieldUpdateOperationsInput No
createdById String | NullableStringFieldUpdateOperationsInput | Null Yes
createdAt DateTime | DateTimeFieldUpdateOperationsInput No
reviewedAt DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
reviewNotes String | NullableStringFieldUpdateOperationsInput | Null Yes
reviewerId String | NullableStringFieldUpdateOperationsInput | Null Yes
inReview Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isApproved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
lastModified DateTime | DateTimeFieldUpdateOperationsInput No
creatorClientId String | NullableStringFieldUpdateOperationsInput | Null Yes
creatorClientProductId String | NullableStringFieldUpdateOperationsInput | Null Yes
fromClientCleanedBy String | NullableStringFieldUpdateOperationsInput | Null Yes
hasZeroDepositOrder Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
hasTransparencyAll Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isNotForUnder18 Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
isDirty Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes

TelCreateManyBrandTemplateInput

Name Type Nullable
id String No
name String No
number String No

ClientEditCreateManyBrandTemplateInput

Name Type Nullable
id String No
clientId String | Null Yes
action ClientEditAction No
field String No
newValue String No
oldValue String No
approved Boolean | Null Yes
approvedTime DateTime | Null Yes
approvedById String | Null Yes

ClientRatingCreateManyBrandTemplateInput

Name Type Nullable
id String No
client_id String No
rating Int No
goodImplematation Boolean | Null Yes
comment String | Null Yes

TelUpdateWithoutBrandTemplateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
number String | StringFieldUpdateOperationsInput No

TelUncheckedUpdateWithoutBrandTemplateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
number String | StringFieldUpdateOperationsInput No

TelUncheckedUpdateManyWithoutBrandTemplateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
number String | StringFieldUpdateOperationsInput No

ClientEditUpdateWithoutBrandTemplateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
clientId String | NullableStringFieldUpdateOperationsInput | Null Yes
action ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput No
field String | StringFieldUpdateOperationsInput No
newValue String | StringFieldUpdateOperationsInput No
oldValue String | StringFieldUpdateOperationsInput No
approved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
approvedTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
approvedBy UserUpdateOneWithoutClientEditsNestedInput No

ClientEditUncheckedUpdateWithoutBrandTemplateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
clientId String | NullableStringFieldUpdateOperationsInput | Null Yes
action ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput No
field String | StringFieldUpdateOperationsInput No
newValue String | StringFieldUpdateOperationsInput No
oldValue String | StringFieldUpdateOperationsInput No
approved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
approvedTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
approvedById String | NullableStringFieldUpdateOperationsInput | Null Yes

ClientEditUncheckedUpdateManyWithoutBrandTemplateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
clientId String | NullableStringFieldUpdateOperationsInput | Null Yes
action ClientEditAction | EnumClientEditActionFieldUpdateOperationsInput No
field String | StringFieldUpdateOperationsInput No
newValue String | StringFieldUpdateOperationsInput No
oldValue String | StringFieldUpdateOperationsInput No
approved Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
approvedTime DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
approvedById String | NullableStringFieldUpdateOperationsInput | Null Yes

ClientRatingUpdateWithoutBrandTemplateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
client_id String | StringFieldUpdateOperationsInput No
rating Int | IntFieldUpdateOperationsInput No
goodImplematation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
comment String | NullableStringFieldUpdateOperationsInput | Null Yes

ClientRatingUncheckedUpdateWithoutBrandTemplateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
client_id String | StringFieldUpdateOperationsInput No
rating Int | IntFieldUpdateOperationsInput No
goodImplematation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
comment String | NullableStringFieldUpdateOperationsInput | Null Yes

ClientRatingUncheckedUpdateManyWithoutBrandTemplateInput

Name Type Nullable
id String | StringFieldUpdateOperationsInput No
client_id String | StringFieldUpdateOperationsInput No
rating Int | IntFieldUpdateOperationsInput No
goodImplematation Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
comment String | NullableStringFieldUpdateOperationsInput | Null Yes

Output Types

Industry

Name Type Nullable
id String Yes
name String Yes
promotions Promotion[] No
categories Category[] No
features Feature[] No
_count IndustryCountOutputType Yes

Country

Name Type Nullable
id String Yes
name String Yes
user User[] No
promotions Promotion[] No
brandTemplate BrandTemplate[] No
features Feature[] No
_count CountryCountOutputType Yes

Role

Name Type Nullable
id String Yes
name String Yes
description String No
permissions Permissions[] No
user User[] No
_count RoleCountOutputType Yes

Domain

Name Type Nullable
id String Yes
name String Yes
description String No
permissions Permissions[] No
_count DomainCountOutputType Yes

Permissions

Name Type Nullable
id String Yes
accessLevel PermissionTypes Yes
domainId String Yes
roleId String Yes
domain Domain Yes
role Role Yes

User

Name Type Nullable
id String Yes
name String Yes
email String Yes
password String No
token String No
fcm_token String No
avatar String No
roleId String No
suspendendAt DateTime No
status UserStatus No
streetAddress String No
city String No
cell String No
tell String No
verificationCode Int No
countryId String No
createdAt DateTime Yes
role Role No
country Country No
teams Team[] No
assignedTasks Task[] No
createdTasks Task[] No
promotion Promotion[] No
payment Payment[] No
createdTemplates BrandTemplate[] No
reviewedTemplates BrandTemplate[] No
clientEdits ClientEdit[] No
_count UserCountOutputType Yes

Team

Name Type Nullable
id String Yes
name String Yes
createdAt DateTime Yes
leader String Yes
userId String No
user User No
goals Goal[] No
_count TeamCountOutputType Yes

Goal

Name Type Nullable
id String Yes
title String Yes
description String No
startDate DateTime No
createdAt DateTime Yes
deadline DateTime No
active Boolean No
isComplete Boolean No
teams Team[] No
tasks Task[] No
_count GoalCountOutputType Yes

Task

Name Type Nullable
id String Yes
title String Yes
comments String No
createdAt DateTime Yes
startDate DateTime No
dueDate DateTime No
priority TaskPriority No
stage TaskStage No
GoalId String No
assigneeId String No
createdById String No
Goal Goal No
assignee User No
createdBy User No

Feature

Name Type Nullable
id String Yes
name String Yes
description String No
type FeatureType Yes
industries Industry[] No
countries Country[] No
promotions Promotion[] No
packages Package[] No
_count FeatureCountOutputType Yes

Package

Name Type Nullable
id String Yes
name String Yes
description String No
color String No
level Int Yes
prices PackagePrice[] No
features Feature[] No
promotions Promotion[] No
payment Payment[] No
_count PackageCountOutputType Yes

PackagePrice

Name Type Nullable
id String Yes
duration Float Yes
amount Float Yes
extentionTime Float No
packageId String No
Package Package No

Promotion

Name Type Nullable
id String Yes
name String Yes
description String No
startDate DateTime Yes
endDate DateTime Yes
createdById String No
createdAt DateTime Yes
features Feature[] No
industries Industry[] No
countries Country[] No
packages Package[] No
createdBy User No
_count PromotionCountOutputType Yes

Payment

Name Type Nullable
id String Yes
amount Decimal Yes
date DateTime Yes
center String No
packageId String Yes
paymentMethod String Yes
cashierId String Yes
revoked Boolean No
createAt DateTime Yes
package Package Yes
cashier User Yes

Category

Name Type Nullable
id String Yes
name String Yes
description String No
icon String No
createdBy String No
createdAt DateTime Yes
industries Industry[] No
brandTemplate BrandTemplate[] No
_count CategoryCountOutputType Yes

Image

Name Type Nullable
id String Yes
url String Yes
incomplete Boolean No
incompleteMessage String No
isTransparent Boolean No
side ImageSide Yes
brandTemplate BrandTemplate[] No
_count ImageCountOutputType Yes

ClientEdit

Name Type Nullable
id String Yes
clientId String No
action ClientEditAction Yes
field String Yes
newValue String Yes
oldValue String Yes
approved Boolean No
approvedTime DateTime No
approvedById String No
brandTemplateId String Yes
approvedBy User No
brandTemplate BrandTemplate Yes

ClientRating

Name Type Nullable
id String Yes
client_id String Yes
rating Int Yes
goodImplematation Boolean No
comment String No
brandTemplateId String Yes
brandTemplate BrandTemplate Yes

Tel

Name Type Nullable
id String Yes
name String Yes
number String Yes
brandTemplateId String Yes
brandTemplate BrandTemplate Yes

BrandTemplate

Name Type Nullable
id String Yes
name String Yes
description String No
tags String No
imageId String No
threeDImage String No
video String No
sizes String No
units String No
categoryId String Yes
addon_categories String No
varieties String No
manufacturer String Yes
street_address String No
city String No
countryId String No
email String No
website String No
draftNotes String No
draftType String No
draftCreatedAt DateTime Yes
createdById String No
createdAt DateTime Yes
reviewedAt DateTime No
reviewNotes String No
reviewerId String No
inReview Boolean No
isApproved Boolean No
lastModified DateTime Yes
creatorClientId String No
creatorClientProductId String No
fromClientCleanedBy String No
hasZeroDepositOrder Boolean No
hasTransparencyAll Boolean No
isNotForUnder18 Boolean No
isDirty Boolean No
image Image No
category Category Yes
country Country No
telNumbers Tel[] No
createdBy User No
reviewer User No
client_edits ClientEdit[] No
implementationRatings ClientRating[] No
_count BrandTemplateCountOutputType Yes

AggregateIndustry

Name Type Nullable
_count IndustryCountAggregateOutputType No
_min IndustryMinAggregateOutputType No
_max IndustryMaxAggregateOutputType No

IndustryGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
_count IndustryCountAggregateOutputType No
_min IndustryMinAggregateOutputType No
_max IndustryMaxAggregateOutputType No

AggregateCountry

Name Type Nullable
_count CountryCountAggregateOutputType No
_min CountryMinAggregateOutputType No
_max CountryMaxAggregateOutputType No

CountryGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
_count CountryCountAggregateOutputType No
_min CountryMinAggregateOutputType No
_max CountryMaxAggregateOutputType No

AggregateRole

Name Type Nullable
_count RoleCountAggregateOutputType No
_min RoleMinAggregateOutputType No
_max RoleMaxAggregateOutputType No

RoleGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
description String No
_count RoleCountAggregateOutputType No
_min RoleMinAggregateOutputType No
_max RoleMaxAggregateOutputType No

AggregateDomain

Name Type Nullable
_count DomainCountAggregateOutputType No
_min DomainMinAggregateOutputType No
_max DomainMaxAggregateOutputType No

DomainGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
description String No
_count DomainCountAggregateOutputType No
_min DomainMinAggregateOutputType No
_max DomainMaxAggregateOutputType No

AggregatePermissions

Name Type Nullable
_count PermissionsCountAggregateOutputType No
_min PermissionsMinAggregateOutputType No
_max PermissionsMaxAggregateOutputType No

PermissionsGroupByOutputType

Name Type Nullable
id String Yes
accessLevel PermissionTypes Yes
domainId String Yes
roleId String Yes
_count PermissionsCountAggregateOutputType No
_min PermissionsMinAggregateOutputType No
_max PermissionsMaxAggregateOutputType No


UserGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
email String Yes
password String No
token String No
fcm_token String No
avatar String No
roleId String No
suspendendAt DateTime No
status UserStatus No
streetAddress String No
city String No
cell String No
tell String No
verificationCode Int No
countryId String No
createdAt DateTime Yes
_count UserCountAggregateOutputType No
_avg UserAvgAggregateOutputType No
_sum UserSumAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No

AggregateTeam

Name Type Nullable
_count TeamCountAggregateOutputType No
_min TeamMinAggregateOutputType No
_max TeamMaxAggregateOutputType No

TeamGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
createdAt DateTime Yes
leader String Yes
userId String No
_count TeamCountAggregateOutputType No
_min TeamMinAggregateOutputType No
_max TeamMaxAggregateOutputType No

AggregateGoal

Name Type Nullable
_count GoalCountAggregateOutputType No
_min GoalMinAggregateOutputType No
_max GoalMaxAggregateOutputType No

GoalGroupByOutputType

Name Type Nullable
id String Yes
title String Yes
description String No
startDate DateTime No
createdAt DateTime Yes
deadline DateTime No
active Boolean No
isComplete Boolean No
_count GoalCountAggregateOutputType No
_min GoalMinAggregateOutputType No
_max GoalMaxAggregateOutputType No

AggregateTask

Name Type Nullable
_count TaskCountAggregateOutputType No
_min TaskMinAggregateOutputType No
_max TaskMaxAggregateOutputType No

TaskGroupByOutputType

Name Type Nullable
id String Yes
title String Yes
comments String No
createdAt DateTime Yes
startDate DateTime No
dueDate DateTime No
priority TaskPriority No
stage TaskStage No
GoalId String No
assigneeId String No
createdById String No
_count TaskCountAggregateOutputType No
_min TaskMinAggregateOutputType No
_max TaskMaxAggregateOutputType No

AggregateFeature

Name Type Nullable
_count FeatureCountAggregateOutputType No
_min FeatureMinAggregateOutputType No
_max FeatureMaxAggregateOutputType No

FeatureGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
description String No
type FeatureType Yes
_count FeatureCountAggregateOutputType No
_min FeatureMinAggregateOutputType No
_max FeatureMaxAggregateOutputType No


PackageGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
description String No
color String No
level Int Yes
_count PackageCountAggregateOutputType No
_avg PackageAvgAggregateOutputType No
_sum PackageSumAggregateOutputType No
_min PackageMinAggregateOutputType No
_max PackageMaxAggregateOutputType No


PackagePriceGroupByOutputType

Name Type Nullable
id String Yes
duration Float Yes
amount Float Yes
extentionTime Float No
packageId String No
_count PackagePriceCountAggregateOutputType No
_avg PackagePriceAvgAggregateOutputType No
_sum PackagePriceSumAggregateOutputType No
_min PackagePriceMinAggregateOutputType No
_max PackagePriceMaxAggregateOutputType No

AggregatePromotion

Name Type Nullable
_count PromotionCountAggregateOutputType No
_min PromotionMinAggregateOutputType No
_max PromotionMaxAggregateOutputType No

PromotionGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
description String No
startDate DateTime Yes
endDate DateTime Yes
createdById String No
createdAt DateTime Yes
_count PromotionCountAggregateOutputType No
_min PromotionMinAggregateOutputType No
_max PromotionMaxAggregateOutputType No


PaymentGroupByOutputType

Name Type Nullable
id String Yes
amount Decimal Yes
date DateTime Yes
center String No
packageId String Yes
paymentMethod String Yes
cashierId String Yes
revoked Boolean No
createAt DateTime Yes
_count PaymentCountAggregateOutputType No
_avg PaymentAvgAggregateOutputType No
_sum PaymentSumAggregateOutputType No
_min PaymentMinAggregateOutputType No
_max PaymentMaxAggregateOutputType No

AggregateCategory

Name Type Nullable
_count CategoryCountAggregateOutputType No
_min CategoryMinAggregateOutputType No
_max CategoryMaxAggregateOutputType No

CategoryGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
description String No
icon String No
createdBy String No
createdAt DateTime Yes
_count CategoryCountAggregateOutputType No
_min CategoryMinAggregateOutputType No
_max CategoryMaxAggregateOutputType No

AggregateImage

Name Type Nullable
_count ImageCountAggregateOutputType No
_min ImageMinAggregateOutputType No
_max ImageMaxAggregateOutputType No

ImageGroupByOutputType

Name Type Nullable
id String Yes
url String Yes
incomplete Boolean No
incompleteMessage String No
isTransparent Boolean No
side ImageSide Yes
_count ImageCountAggregateOutputType No
_min ImageMinAggregateOutputType No
_max ImageMaxAggregateOutputType No

AggregateClientEdit

Name Type Nullable
_count ClientEditCountAggregateOutputType No
_min ClientEditMinAggregateOutputType No
_max ClientEditMaxAggregateOutputType No

ClientEditGroupByOutputType

Name Type Nullable
id String Yes
clientId String No
action ClientEditAction Yes
field String Yes
newValue String Yes
oldValue String Yes
approved Boolean No
approvedTime DateTime No
approvedById String No
brandTemplateId String Yes
_count ClientEditCountAggregateOutputType No
_min ClientEditMinAggregateOutputType No
_max ClientEditMaxAggregateOutputType No


ClientRatingGroupByOutputType

Name Type Nullable
id String Yes
client_id String Yes
rating Int Yes
goodImplematation Boolean No
comment String No
brandTemplateId String Yes
_count ClientRatingCountAggregateOutputType No
_avg ClientRatingAvgAggregateOutputType No
_sum ClientRatingSumAggregateOutputType No
_min ClientRatingMinAggregateOutputType No
_max ClientRatingMaxAggregateOutputType No

AggregateTel

Name Type Nullable
_count TelCountAggregateOutputType No
_min TelMinAggregateOutputType No
_max TelMaxAggregateOutputType No

TelGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
number String Yes
brandTemplateId String Yes
_count TelCountAggregateOutputType No
_min TelMinAggregateOutputType No
_max TelMaxAggregateOutputType No

AggregateBrandTemplate

Name Type Nullable
_count BrandTemplateCountAggregateOutputType No
_min BrandTemplateMinAggregateOutputType No
_max BrandTemplateMaxAggregateOutputType No

BrandTemplateGroupByOutputType

Name Type Nullable
id String Yes
name String Yes
description String No
tags String No
imageId String No
threeDImage String No
video String No
sizes String No
units String No
categoryId String Yes
addon_categories String No
varieties String No
manufacturer String Yes
street_address String No
city String No
countryId String No
email String No
website String No
draftNotes String No
draftType String No
draftCreatedAt DateTime Yes
createdById String No
createdAt DateTime Yes
reviewedAt DateTime No
reviewNotes String No
reviewerId String No
inReview Boolean No
isApproved Boolean No
lastModified DateTime Yes
creatorClientId String No
creatorClientProductId String No
fromClientCleanedBy String No
hasZeroDepositOrder Boolean No
hasTransparencyAll Boolean No
isNotForUnder18 Boolean No
isDirty Boolean No
_count BrandTemplateCountAggregateOutputType No
_min BrandTemplateMinAggregateOutputType No
_max BrandTemplateMaxAggregateOutputType No

AffectedRowsOutput

Name Type Nullable
count Int Yes

IndustryCountOutputType

Name Type Nullable
promotions Int Yes
categories Int Yes
features Int Yes

IndustryCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
_all Int Yes

IndustryMinAggregateOutputType

Name Type Nullable
id String No
name String No

IndustryMaxAggregateOutputType

Name Type Nullable
id String No
name String No

CountryCountOutputType

Name Type Nullable
user Int Yes
promotions Int Yes
brandTemplate Int Yes
features Int Yes

CountryCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
_all Int Yes

CountryMinAggregateOutputType

Name Type Nullable
id String No
name String No

CountryMaxAggregateOutputType

Name Type Nullable
id String No
name String No

RoleCountOutputType

Name Type Nullable
permissions Int Yes
user Int Yes

RoleCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
description Int Yes
_all Int Yes

RoleMinAggregateOutputType

Name Type Nullable
id String No
name String No
description String No

RoleMaxAggregateOutputType

Name Type Nullable
id String No
name String No
description String No

DomainCountOutputType

Name Type Nullable
permissions Int Yes

DomainCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
description Int Yes
_all Int Yes

DomainMinAggregateOutputType

Name Type Nullable
id String No
name String No
description String No

DomainMaxAggregateOutputType

Name Type Nullable
id String No
name String No
description String No

PermissionsCountAggregateOutputType

Name Type Nullable
id Int Yes
accessLevel Int Yes
domainId Int Yes
roleId Int Yes
_all Int Yes

PermissionsMinAggregateOutputType

Name Type Nullable
id String No
accessLevel PermissionTypes No
domainId String No
roleId String No

PermissionsMaxAggregateOutputType

Name Type Nullable
id String No
accessLevel PermissionTypes No
domainId String No
roleId String No

UserCountOutputType

Name Type Nullable
teams Int Yes
assignedTasks Int Yes
createdTasks Int Yes
promotion Int Yes
payment Int Yes
createdTemplates Int Yes
reviewedTemplates Int Yes
clientEdits Int Yes

UserCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
email Int Yes
password Int Yes
token Int Yes
fcm_token Int Yes
avatar Int Yes
roleId Int Yes
suspendendAt Int Yes
status Int Yes
streetAddress Int Yes
city Int Yes
cell Int Yes
tell Int Yes
verificationCode Int Yes
countryId Int Yes
createdAt Int Yes
_all Int Yes

UserAvgAggregateOutputType

Name Type Nullable
verificationCode Float No

UserSumAggregateOutputType

Name Type Nullable
verificationCode Int No

UserMinAggregateOutputType

Name Type Nullable
id String No
name String No
email String No
password String No
token String No
fcm_token String No
avatar String No
roleId String No
suspendendAt DateTime No
status UserStatus No
streetAddress String No
city String No
cell String No
tell String No
verificationCode Int No
countryId String No
createdAt DateTime No

UserMaxAggregateOutputType

Name Type Nullable
id String No
name String No
email String No
password String No
token String No
fcm_token String No
avatar String No
roleId String No
suspendendAt DateTime No
status UserStatus No
streetAddress String No
city String No
cell String No
tell String No
verificationCode Int No
countryId String No
createdAt DateTime No

TeamCountOutputType

Name Type Nullable
goals Int Yes

TeamCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
createdAt Int Yes
leader Int Yes
userId Int Yes
_all Int Yes

TeamMinAggregateOutputType

Name Type Nullable
id String No
name String No
createdAt DateTime No
leader String No
userId String No

TeamMaxAggregateOutputType

Name Type Nullable
id String No
name String No
createdAt DateTime No
leader String No
userId String No

GoalCountOutputType

Name Type Nullable
teams Int Yes
tasks Int Yes

GoalCountAggregateOutputType

Name Type Nullable
id Int Yes
title Int Yes
description Int Yes
startDate Int Yes
createdAt Int Yes
deadline Int Yes
active Int Yes
isComplete Int Yes
_all Int Yes

GoalMinAggregateOutputType

Name Type Nullable
id String No
title String No
description String No
startDate DateTime No
createdAt DateTime No
deadline DateTime No
active Boolean No
isComplete Boolean No

GoalMaxAggregateOutputType

Name Type Nullable
id String No
title String No
description String No
startDate DateTime No
createdAt DateTime No
deadline DateTime No
active Boolean No
isComplete Boolean No

TaskCountAggregateOutputType

Name Type Nullable
id Int Yes
title Int Yes
comments Int Yes
createdAt Int Yes
startDate Int Yes
dueDate Int Yes
priority Int Yes
stage Int Yes
GoalId Int Yes
assigneeId Int Yes
createdById Int Yes
_all Int Yes

TaskMinAggregateOutputType

Name Type Nullable
id String No
title String No
comments String No
createdAt DateTime No
startDate DateTime No
dueDate DateTime No
priority TaskPriority No
stage TaskStage No
GoalId String No
assigneeId String No
createdById String No

TaskMaxAggregateOutputType

Name Type Nullable
id String No
title String No
comments String No
createdAt DateTime No
startDate DateTime No
dueDate DateTime No
priority TaskPriority No
stage TaskStage No
GoalId String No
assigneeId String No
createdById String No

FeatureCountOutputType

Name Type Nullable
industries Int Yes
countries Int Yes
promotions Int Yes
packages Int Yes

FeatureCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
description Int Yes
type Int Yes
_all Int Yes

FeatureMinAggregateOutputType

Name Type Nullable
id String No
name String No
description String No
type FeatureType No

FeatureMaxAggregateOutputType

Name Type Nullable
id String No
name String No
description String No
type FeatureType No

PackageCountOutputType

Name Type Nullable
prices Int Yes
features Int Yes
promotions Int Yes
payment Int Yes

PackageCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
description Int Yes
color Int Yes
level Int Yes
_all Int Yes

PackageAvgAggregateOutputType

Name Type Nullable
level Float No

PackageSumAggregateOutputType

Name Type Nullable
level Int No

PackageMinAggregateOutputType

Name Type Nullable
id String No
name String No
description String No
color String No
level Int No

PackageMaxAggregateOutputType

Name Type Nullable
id String No
name String No
description String No
color String No
level Int No

PackagePriceCountAggregateOutputType

Name Type Nullable
id Int Yes
duration Int Yes
amount Int Yes
extentionTime Int Yes
packageId Int Yes
_all Int Yes

PackagePriceAvgAggregateOutputType

Name Type Nullable
duration Float No
amount Float No
extentionTime Float No

PackagePriceSumAggregateOutputType

Name Type Nullable
duration Float No
amount Float No
extentionTime Float No

PackagePriceMinAggregateOutputType

Name Type Nullable
id String No
duration Float No
amount Float No
extentionTime Float No
packageId String No

PackagePriceMaxAggregateOutputType

Name Type Nullable
id String No
duration Float No
amount Float No
extentionTime Float No
packageId String No

PromotionCountOutputType

Name Type Nullable
features Int Yes
industries Int Yes
countries Int Yes
packages Int Yes

PromotionCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
description Int Yes
startDate Int Yes
endDate Int Yes
createdById Int Yes
createdAt Int Yes
_all Int Yes

PromotionMinAggregateOutputType

Name Type Nullable
id String No
name String No
description String No
startDate DateTime No
endDate DateTime No
createdById String No
createdAt DateTime No

PromotionMaxAggregateOutputType

Name Type Nullable
id String No
name String No
description String No
startDate DateTime No
endDate DateTime No
createdById String No
createdAt DateTime No

PaymentCountAggregateOutputType

Name Type Nullable
id Int Yes
amount Int Yes
date Int Yes
center Int Yes
packageId Int Yes
paymentMethod Int Yes
cashierId Int Yes
revoked Int Yes
createAt Int Yes
_all Int Yes

PaymentAvgAggregateOutputType

Name Type Nullable
amount Decimal No

PaymentSumAggregateOutputType

Name Type Nullable
amount Decimal No

PaymentMinAggregateOutputType

Name Type Nullable
id String No
amount Decimal No
date DateTime No
center String No
packageId String No
paymentMethod String No
cashierId String No
revoked Boolean No
createAt DateTime No

PaymentMaxAggregateOutputType

Name Type Nullable
id String No
amount Decimal No
date DateTime No
center String No
packageId String No
paymentMethod String No
cashierId String No
revoked Boolean No
createAt DateTime No

CategoryCountOutputType

Name Type Nullable
industries Int Yes
brandTemplate Int Yes

CategoryCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
description Int Yes
icon Int Yes
createdBy Int Yes
createdAt Int Yes
_all Int Yes

CategoryMinAggregateOutputType

Name Type Nullable
id String No
name String No
description String No
icon String No
createdBy String No
createdAt DateTime No

CategoryMaxAggregateOutputType

Name Type Nullable
id String No
name String No
description String No
icon String No
createdBy String No
createdAt DateTime No

ImageCountOutputType

Name Type Nullable
brandTemplate Int Yes

ImageCountAggregateOutputType

Name Type Nullable
id Int Yes
url Int Yes
incomplete Int Yes
incompleteMessage Int Yes
isTransparent Int Yes
side Int Yes
_all Int Yes

ImageMinAggregateOutputType

Name Type Nullable
id String No
url String No
incomplete Boolean No
incompleteMessage String No
isTransparent Boolean No
side ImageSide No

ImageMaxAggregateOutputType

Name Type Nullable
id String No
url String No
incomplete Boolean No
incompleteMessage String No
isTransparent Boolean No
side ImageSide No

ClientEditCountAggregateOutputType

Name Type Nullable
id Int Yes
clientId Int Yes
action Int Yes
field Int Yes
newValue Int Yes
oldValue Int Yes
approved Int Yes
approvedTime Int Yes
approvedById Int Yes
brandTemplateId Int Yes
_all Int Yes

ClientEditMinAggregateOutputType

Name Type Nullable
id String No
clientId String No
action ClientEditAction No
field String No
newValue String No
oldValue String No
approved Boolean No
approvedTime DateTime No
approvedById String No
brandTemplateId String No

ClientEditMaxAggregateOutputType

Name Type Nullable
id String No
clientId String No
action ClientEditAction No
field String No
newValue String No
oldValue String No
approved Boolean No
approvedTime DateTime No
approvedById String No
brandTemplateId String No

ClientRatingCountAggregateOutputType

Name Type Nullable
id Int Yes
client_id Int Yes
rating Int Yes
goodImplematation Int Yes
comment Int Yes
brandTemplateId Int Yes
_all Int Yes

ClientRatingAvgAggregateOutputType

Name Type Nullable
rating Float No

ClientRatingSumAggregateOutputType

Name Type Nullable
rating Int No

ClientRatingMinAggregateOutputType

Name Type Nullable
id String No
client_id String No
rating Int No
goodImplematation Boolean No
comment String No
brandTemplateId String No

ClientRatingMaxAggregateOutputType

Name Type Nullable
id String No
client_id String No
rating Int No
goodImplematation Boolean No
comment String No
brandTemplateId String No

TelCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
number Int Yes
brandTemplateId Int Yes
_all Int Yes

TelMinAggregateOutputType

Name Type Nullable
id String No
name String No
number String No
brandTemplateId String No

TelMaxAggregateOutputType

Name Type Nullable
id String No
name String No
number String No
brandTemplateId String No

BrandTemplateCountOutputType

Name Type Nullable
telNumbers Int Yes
client_edits Int Yes
implementationRatings Int Yes

BrandTemplateCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
description Int Yes
tags Int Yes
imageId Int Yes
threeDImage Int Yes
video Int Yes
sizes Int Yes
units Int Yes
categoryId Int Yes
addon_categories Int Yes
varieties Int Yes
manufacturer Int Yes
street_address Int Yes
city Int Yes
countryId Int Yes
email Int Yes
website Int Yes
draftNotes Int Yes
draftType Int Yes
draftCreatedAt Int Yes
createdById Int Yes
createdAt Int Yes
reviewedAt Int Yes
reviewNotes Int Yes
reviewerId Int Yes
inReview Int Yes
isApproved Int Yes
lastModified Int Yes
creatorClientId Int Yes
creatorClientProductId Int Yes
fromClientCleanedBy Int Yes
hasZeroDepositOrder Int Yes
hasTransparencyAll Int Yes
isNotForUnder18 Int Yes
isDirty Int Yes
_all Int Yes

BrandTemplateMinAggregateOutputType

Name Type Nullable
id String No
name String No
description String No
imageId String No
threeDImage String No
video String No
categoryId String No
manufacturer String No
street_address String No
city String No
countryId String No
email String No
website String No
draftNotes String No
draftType String No
draftCreatedAt DateTime No
createdById String No
createdAt DateTime No
reviewedAt DateTime No
reviewNotes String No
reviewerId String No
inReview Boolean No
isApproved Boolean No
lastModified DateTime No
creatorClientId String No
creatorClientProductId String No
fromClientCleanedBy String No
hasZeroDepositOrder Boolean No
hasTransparencyAll Boolean No
isNotForUnder18 Boolean No
isDirty Boolean No

BrandTemplateMaxAggregateOutputType

Name Type Nullable
id String No
name String No
description String No
imageId String No
threeDImage String No
video String No
categoryId String No
manufacturer String No
street_address String No
city String No
countryId String No
email String No
website String No
draftNotes String No
draftType String No
draftCreatedAt DateTime No
createdById String No
createdAt DateTime No
reviewedAt DateTime No
reviewNotes String No
reviewerId String No
inReview Boolean No
isApproved Boolean No
lastModified DateTime No
creatorClientId String No
creatorClientProductId String No
fromClientCleanedBy String No
hasZeroDepositOrder Boolean No
hasTransparencyAll Boolean No
isNotForUnder18 Boolean No
isDirty Boolean No